drawPoint method
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();
}