PointPlane3D constructor

PointPlane3D(
  1. double size,
  2. Axis3D axis,
  3. double gap,
  4. Vector3 position, {
  5. Color? color,
  6. double? pointWidth,
})

Creates a new PointPlane3D.

Implementation

PointPlane3D(
  this.size,
  this.axis,
  this.gap,
  this.position, {
  this.color,
  this.pointWidth,
}) : super(_generateFigures(size, gap, axis, position, color, pointWidth));