using System; using System.Diagnostics; namespace LibNoise.Operator { /// /// Provides a noise module that outputs the larger of the two output values from two /// source modules. [OPERATOR] /// public class Max : ModuleBase { #region Constructors /// /// Initializes a new instance of Max. /// public Max() : base(2) { } /// /// Initializes a new instance of Max. /// /// The left hand input module. /// The right hand input module. public Max(ModuleBase lhs, ModuleBase rhs) : base(2) { Modules[0] = lhs; Modules[1] = rhs; } #endregion #region ModuleBase Members /// /// Returns the output value for the given input coordinates. /// /// The input coordinate on the x-axis. /// The input coordinate on the y-axis. /// The input coordinate on the z-axis. /// The resulting output value. public override double GetValue(double x, double y, double z) { Debug.Assert(Modules[0] != null); Debug.Assert(Modules[1] != null); var a = Modules[0].GetValue(x, y, z); var b = Modules[1].GetValue(x, y, z); return Math.Max(a, b); } #endregion } }