VectorizedPoint constructor

VectorizedPoint({
  1. Color color = WHITE,
  2. Vector3 location = ORIGIN,
  3. double strokeWidth = DEFAULT_STROKE_WIDTH,
  4. double artificialWidth = 0.01,
  5. double artificialHeight = 0.01,
})

Implementation

VectorizedPoint({
  Color color = WHITE,
  Vector3 location = ORIGIN,
  double strokeWidth = DEFAULT_STROKE_WIDTH,
  this.artificialWidth = 0.01,
  this.artificialHeight = 0.01,
}) : super(color: color) {
  setPoints([location]);
}