Click or drag to resize
Ab4d.SharpEngine logo

MultiLineBaseNode Class

MultiLineBaseNode is an abstract class that is used by SceneNodes that are rendered by defining multiple lines.
Inheritance Hierarchy
SystemObject
  Ab4d.SharpEngine.CoreComponentBase
    Ab4d.SharpEngine.CoreInitializedSceneComponent
      Ab4d.SharpEngine.SceneNodesSceneNode
        Ab4d.SharpEngine.SceneNodesRenderedNode
          Ab4d.SharpEngine.SceneNodesLineBaseNode
            Ab4d.SharpEngine.SceneNodesMultiLineBaseNode
              Ab4d.SharpEngine.SceneNodesMultiLineNode
              Ab4d.SharpEngine.SceneNodesPolyLineBaseNode
              Ab4d.SharpEngine.SceneNodesWireBoxNode
              Ab4d.SharpEngine.SceneNodesWireCrossNode

Namespace: Ab4d.SharpEngine.SceneNodes
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public abstract class MultiLineBaseNode : LineBaseNode

The MultiLineBaseNode type exposes the following members.

Constructors
 NameDescription
Protected methodMultiLineBaseNode(Boolean, String)Initializes a new instance of the MultiLineBaseNode class
Protected methodMultiLineBaseNode(Boolean, Material, String)Initializes a new instance of the MultiLineBaseNode class
Protected methodMultiLineBaseNode(Vector3, Boolean, String)Initializes a new instance of the MultiLineBaseNode class
Protected methodMultiLineBaseNode(Boolean, Color3, Single, String)Initializes a new instance of the MultiLineBaseNode class
Protected methodMultiLineBaseNode(Boolean, Color4, Single, String)Initializes a new instance of the MultiLineBaseNode class
Protected methodMultiLineBaseNode(Vector3, Boolean, Material, String)Initializes a new instance of the MultiLineBaseNode class
Protected methodMultiLineBaseNode(Vector3, Boolean, BoundingBox, Material, String)Initializes a new instance of the MultiLineBaseNode class
Protected methodMultiLineBaseNode(Vector3, Boolean, Color3, Single, String)Initializes a new instance of the MultiLineBaseNode class
Protected methodMultiLineBaseNode(Vector3, Boolean, Color4, Single, String)Initializes a new instance of the MultiLineBaseNode class
Protected methodMultiLineBaseNode(Vector3, Boolean, BoundingBox, Color3, Single, String)Initializes a new instance of the MultiLineBaseNode class
Protected methodMultiLineBaseNode(Vector3, Boolean, BoundingBox, Color4, Single, String)Initializes a new instance of the MultiLineBaseNode class
Top
Methods
 NameDescription
Public methodGetIsLineStrip Returns true when the positions define connected lines. When false is returned than lines are not connected and each line is defined by two positions.
Public methodGetPositions Gets an array of Vector3 items that defines the positions that are used to define this line.
Public methodGetPositionsBoundingBox Gets a BoundingBox of the positions that define this line (SceneNode.Transform is not applied to this BoundingBox).
Protected methodOnUpdate
(Overrides LineBaseNodeOnUpdate)
Protected methodSetIsLineStrip 
Protected methodSetPositions(Vector3) 
Protected methodSetPositions(Vector3, BoundingBox) 
Protected methodUpdateCapMeshForLineStrip 
Protected methodUpdateMesh 
Protected methodUpdatePositions UpdatePositions method needs to be called after the content of the _positions array is changed. The method updates the local bounding box and will update the mesh in the update pass. To update mesh, call Update method. Optionally it is possible to set the bounding box of the positions. This prevents calculating the bounding box form the positions. When the _positions property is set to another positions instance, then it is not needed to call this method.
Top
See Also