Line3D constructor

Line3D(
  1. Vector3 a,
  2. Vector3 b, {
  3. double? width,
  4. Color? color,
})

Creates a new line.

Implementation

Line3D(this.a, this.b, {this.width, this.color});