Line constructor
Line([
- Vector3? start,
- Vector3? end
Implementation
Line([Vector3? start, Vector3? end]) {
this.start = (start != null) ? start : Vector3.zero();
this.end = (end != null) ? end : Vector3.zero();
}