 |
PolyLineBaseNode Class |
PolyLineBaseNode is an abstract class that is used by SceneNodes that are rendered as a poly-line.
Inheritance Hierarchy Namespace: Ab4d.SharpEngine.SceneNodesAssembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntaxpublic abstract class PolyLineBaseNode : MultiLineBaseNode
The PolyLineBaseNode type exposes the following members.
Constructors | Name | Description |
---|
 | PolyLineBaseNode(String) | Initializes a new instance of the PolyLineBaseNode class |
 | PolyLineBaseNode(IPolyLineMaterial, String) | Initializes a new instance of the PolyLineBaseNode class |
 | PolyLineBaseNode(Color3, Single, String) | Initializes a new instance of the PolyLineBaseNode class |
 | PolyLineBaseNode(Color4, Single, String) | Initializes a new instance of the PolyLineBaseNode class |
 | PolyLineBaseNode(Vector3, IPolyLineMaterial, String) | Initializes a new instance of the PolyLineBaseNode class |
 | PolyLineBaseNode(Vector3, BoundingBox, IPolyLineMaterial, String) | Initializes a new instance of the PolyLineBaseNode class |
 | PolyLineBaseNode(Vector3, Color3, Single, String) | Initializes a new instance of the PolyLineBaseNode class |
 | PolyLineBaseNode(Vector3, Color4, Single, String) | Initializes a new instance of the PolyLineBaseNode class |
 | PolyLineBaseNode(Vector3, BoundingBox, Color4, Single, String) | Initializes a new instance of the PolyLineBaseNode class |
Top
Properties | Name | Description |
---|
 | IsLineStrip |
Always returns true for PolyLineNode. This means that the positions define connected lines.
|
 | MiterLimit |
Gets or sets a value that defines at which line thickness the mitered (sharp) line joint is converted into beveled (square) line joint.
For example, a value of 4 requires the mitered joint length to be 4 times the line thickness before the joint becomes beveled.
MiterLimit is used only when IsPolyLine is set to true.
Default value is set from static DefaultMiterLimit value (2 by default).
|
Top
Methods
Fields | Name | Description |
---|
 | isClosed |
When true, then the poly-line is closed, e.g. the last position is the same as the first position.
|
 | positionsWithAdjacency |
Array of Vector3 that is used to create VertexBuffer. This array contains two additional adjacency positions that are required to render poly-lines.
|
Top
See Also
Inheritance Hierarchy