|
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: 2.0.8956+4c7684e186ca1be74e7a284fbe739d9a1b843d3c
Syntax public 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 |
TopProperties | 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).
|
TopMethods 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.
|
TopSee Also Inheritance Hierarchy