Plane3D constructor

Plane3D(
  1. double size,
  2. Axis3D axis,
  3. bool negative,
  4. Vector3 position, {
  5. Color? color,
})

Creates a new Plane3D.

Implementation

Plane3D(this.size, this.axis, this.negative, this.position, {this.color})
    : super(_getFigures(size, axis, negative, position, color));