Table of Contents

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

v1 Vector3F

First vertex of the line

v2 Vector3F

Second vertex of the line

color Color4B

Color of the line, represented as a Color4B struct

Fields

Color

Color of the line, represented as a Color4B struct

public Color4B Color

Field Value

Color4B

Vertex1

First vertex of the line

public Vector3F Vertex1

Field Value

Vector3F

Vertex2

Second vertex of the line

public Vector3F Vertex2

Field Value

Vector3F