Draw a shape that is subtracted with another shape

Basically, I’m trying to draw something that looks like this with two circles. One for the main shape, and another to “punch out” an area from the main shape:

Not really sure where to start though. This would be a strictly 2d project if that matters.

1 Like

you can just use ofPath, the default polygon winding will do that if you draw first the bigger circle and then the small one

That worked perfect!! Thank you so much.