set method
Sets the given values to this line segment.
Implementation
LineSegment set(Vector3 from, Vector3 to ) {
this.from = from;
this.to = to;
return this;
}
Sets the given values to this line segment.
LineSegment set(Vector3 from, Vector3 to ) {
this.from = from;
this.to = to;
return this;
}