|
ScreenSpaceLineNode(ICollectionVector3, Boolean, Boolean, Boolean, Color4, Single, Single, LineCap, LineCap, String) Constructor |
Constructor
Namespace: Ab3d.DirectXAssembly: Ab3d.DXEngine (in Ab3d.DXEngine.dll) Version: 7.0.8865.1045
Syntax public ScreenSpaceLineNode(
ICollection<Vector3[]> multiPositions,
bool isLineStrip,
bool isPolyLine,
bool isLineClosed,
Color4 lineColor,
float lineThickness,
float miterLimit,
LineCap startLineCap,
LineCap endLineCap,
string name = null
)
Parameters
- multiPositions ICollectionVector3
- collection of multiple positions arrays
- isLineStrip Boolean
- true if lines are connected to each other (the last position of one line is the first position of the next line); false if lines are disconnected (each line has two positions that are not shared with other lines)
- isPolyLine Boolean
- if true then line segments are rendered as connected to each other creating a polyline
- isLineClosed Boolean
- true if the end of the last line is connected to the beginning of the first line
- lineColor Color4
- color of the line
- lineThickness Single
- thickness of the line
- miterLimit Single
- a double value that defines at which line thickness the mitered (sharp) line joint is converted into beveled (square) line joint
- startLineCap LineCap
- start line cap
- endLineCap LineCap
- end line cap
- name String (Optional)
- name (optional)
See Also