Click or drag to resize
Ab4d.SharpEngine logo

CurveLineNode Class

CurveLineNode class is used to create a 3D curve that is rendered as a single poly-line.
Inheritance Hierarchy

Namespace: Ab4d.SharpEngine.SceneNodes
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 1.0.8740+deb2991acfe86a95cca780cd4f82bcae2805c1a5
Syntax
C#
public class CurveLineNode : PolyLineBaseNode

The CurveLineNode type exposes the following members.

Constructors
 NameDescription
Public methodCurveLineNode(String)Initializes a new instance of the CurveLineNode class
Public methodCurveLineNode(IPolyLineMaterial, String)Initializes a new instance of the CurveLineNode class
Public methodCurveLineNode(Color3, Single, String)Initializes a new instance of the CurveLineNode class
Public methodCurveLineNode(Color4, Single, String)Initializes a new instance of the CurveLineNode class
Public methodCurveLineNode(CurveLineNodeCurveTypes, Vector3, Int32, Color4, Single, String)Initializes a new instance of the CurveLineNode class
Public methodCurveLineNode(CurveLineNodeCurveTypes, Vector3, Single, Int32, Color4, Single, String)Initializes a new instance of the CurveLineNode class
Top
Properties
 NameDescription
Public propertyControlPoints Control points of the curve. When positions in the array are changed, call the UpdatePositions method to update the mesh.
Public propertyCurveScale CurveScale is used for CurveThroughPoints and defines the curvature of the curve. Default value is 0.25.
Public propertyCurveType Type of the curve. Default value is CurveTypes.Undefined (linear line segments).
Public propertyPositionsPerSegment Number of generated positions per each curve segment. The higher the value, the smoother the curve. Default value is 30.
Public propertyWeights Weights corresponding to control points. Used only with NURBS curve type. When weights in the array are changed, call the UpdatePositions method to update the mesh.
Top
Methods
 NameDescription
Public methodUpdatePositions UpdatePositions method must be called when the value in the ControlPoints or Weights are changed.
Top
See Also