Line3 constructor

Line3([
  1. Vector3? start,
  2. Vector3? end
])

Implementation

Line3([Vector3? start, Vector3? end]) {
  this.start = (start != null) ? start : Vector3.init();
  this.end = (end != null) ? end : Vector3.init();
}