/// <summary> /// Initializes a new instance of XyzAxisSculptor. /// </summary> /// <param name="length">Length of each axis.</param> /// <param name="radius">Radius of each axis.</param> /// <param name="signed">Axis signed characteristic.</param> /// <param name="coordinateSystemKind">The kind of coordinate system.</param> public XyzAxisSculptor( float length, float radius, bool signed, CoordinateSystemKind coordinateSystemKind) { Initialize(length, radius, signed, coordinateSystemKind); }
/// <summary> /// Initializes an existing instance of XyzAxisSculptor. /// </summary> /// <param name="length">Length of each axis.</param> /// <param name="radius">Radius of each axis.</param> /// <param name="signed">Axis signed characteristic.</param> /// <param name="coordinateSystemKind">The kind of coordinate system.</param> public void Initialize( float length, float radius, bool signed, CoordinateSystemKind coordinateSystemKind) { _length = length; _radius = radius; _signed = signed; _coordinateSystemKind = coordinateSystemKind; }