C# Class YAMP.XYZPlotValue

Abstract base class for plot values that are based on an XYZ (or similar) coordinate system.
Inheritance: XYPlotValue
Exibir arquivo Open project: FlorianRappl/YAMP

Private Properties

Property Type Description
Deserialize void
Serialize void

Public Methods

Method Description
SetZRange ( double min, double max ) : void

Sets the z-range (min and max) in one statement.

XYZPlotValue ( ) : System

Creates a new instance.

Protected Methods

Method Description
InitializeBoundaries ( ) : void

Initializes the values MinX, MaxX, MinY, MaxY, MinZ and MaxZ.

Private Methods

Method Description
Deserialize ( Deserializer ds ) : void
Serialize ( Serializer s ) : void

Method Details

InitializeBoundaries() protected method

Initializes the values MinX, MaxX, MinY, MaxY, MinZ and MaxZ.
protected InitializeBoundaries ( ) : void
return void

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

XYZPlotValue() public method

Creates a new instance.
public XYZPlotValue ( ) : System
return System