Struct Line
- Namespace
- RetroEditor.Plugins
- Assembly
- RetroEditor.dll
Represents a line in 3D space defined by two vertices and a color
public struct Line
- Inherited Members
Constructors
Line(Vector3F, Vector3F, Color4B)
Initializes a new instance of the Line struct with the specified vertices and color
public Line(Vector3F v1, Vector3F v2, Color4B color)
Parameters
v1Vector3FFirst vertex of the line
v2Vector3FSecond vertex of the line
colorColor4BColor of the line, represented as a Color4B struct
Fields
Color
Color of the line, represented as a Color4B struct
public Color4B Color
Field Value
Vertex1
First vertex of the line
public Vector3F Vertex1
Field Value
Vertex2
Second vertex of the line
public Vector3F Vertex2