The Start
property of the Line
struct represents the starting position of the line in 3D space. It is a Vector3
type, which means it holds three-dimensional coordinates (x, y, z) that define the initial point of the line.
The Start
property of the Line
struct represents the starting position of the line in 3D space. It is a Vector3
type, which means it holds three-dimensional coordinates (x, y, z) that define the initial point of the line.
To access or modify the starting position of a Line
instance, use the Start
property. This property is public and can be read or set directly.
// Example of using the Start property Line line = new Line(); // Set the start position of the line line.Start = new Vector3(0, 0, 0); // Get the start position of the line Vector3 startPosition = line.Start;