Vector3 Start { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

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.

Usage

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

// 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;