Line3D constructor

Line3D(
  1. Vector3 a,
  2. Vector3 b, {
  3. double? width,
  4. Color? color,
  5. String? label,
  6. double labelPosition = 0.5,
  7. Vector3? labelOffset,
})

Creates a new line.

Implementation

Line3D(
  this.a,
  this.b, {
  this.width,
  this.color,
  this.label,
  this.labelPosition = 0.5,
  this.labelOffset,
});