YAMP.XYZPlotValue.SetZRange C# (CSharp) Method

SetZRange() public method

Sets the z-range (min and max) in one statement.
public SetZRange ( double min, double max ) : void
min double The minimum for the z-axis.
max double The maximum for the z-axis.
return void
        public void SetZRange(double min, double max)
        {
            MinZ = min;
            MaxZ = max;
        }