Click or drag to resize
AB4D logo

ScreenSpaceLineNode(ICollectionVector3, Boolean, Boolean, LineCap, LineCap, ILineMaterial, String) Constructor

Constructor

Namespace: Ab3d.DirectX
Assembly: Ab3d.DXEngine (in Ab3d.DXEngine.dll) Version: 7.0.8865.1045
Syntax
C#
public ScreenSpaceLineNode(
	ICollection<Vector3[]> multiPositions,
	bool isLineStrip,
	bool isEachLineClosed,
	LineCap startLineCap,
	LineCap endLineCap,
	ILineMaterial lineMaterial = null,
	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)
isEachLineClosed  Boolean
true if the end of the last line is connected to the beginning of the first line
startLineCap  LineCap
start line cap
endLineCap  LineCap
end line cap
lineMaterial  ILineMaterial  (Optional)
lineMaterial
name  String  (Optional)
name (optional)
See Also