Struct LineSegment3D
- Namespace
- MathAssertions.Geometry3D
- Assembly
- MathAssertions.dll
public readonly record struct LineSegment3D : IEquatable<LineSegment3D>
- Implements
- Inherited Members
Constructors
LineSegment3D(Vector3, Vector3)
public LineSegment3D(Vector3 Start, Vector3 End)
Parameters
Properties
Direction
public Vector3 Direction { get; }
Property Value
End
Ending endpoint of the segment.
public Vector3 End { get; init; }
Property Value
Length
Length of the segment.
public float Length { get; }
Property Value
Start
Starting endpoint of the segment.
public Vector3 Start { get; init; }