drawPoint method

  1. @override
void drawPoint(
  1. Vector2 point,
  2. num radiusOnScreen,
  3. Color3i color
)
override

Draws the given point with the given unscaled radius, in the given color.

Implementation

@override
void drawPoint(
  Vector2 point,
  num radiusOnScreen,
  Color3i color,
) {
  _pathCircle(point, radiusOnScreen, color);
  ctx.fill();
}