Loading...
Logo
Processing Forum

Clipping circle with polygon

in General Discussion  •  Other  •  8 months ago  
I want to draw the intersection of a circle and a convex polygon, that is to use the polygon to clip the circle. How can this be done in Processing?

I know that I could draw into PGraphics and use mask() to make the intersection, but drawing images is bound to be slow. So is there a better way?

Replies(4)

Do you mean that you like to generate a shape like these?
You can do this with Geomerative's RPolygon class.

Code Example:
Copy code
  1. import geomerative.*;
  2. RPolygon circle, polygon;
  3. RPoint[] points = new RPoint[4];
  4.  
  5. void setup () {
  6.   size(500, 500);
  7.   RG.init(this);
  8. }
  9.  
  10. void draw () {
  11.   background(12, 200, 170);
  12.   circle = RShape.createCircle(width/2, height/2, width/2).toPolygon();
  13.   points[0] = new RPoint(mouseX, mouseY-width/3);
  14.   points[1] = new RPoint(mouseX+width/3, mouseY);
  15.   points[2] = new RPoint(mouseX, mouseY+width/3);
  16.   points[3] = new RPoint(mouseX-width/3, mouseY);
  17.   polygon = new RPolygon(points);
  18.   circle = circle.intersection(polygon);
  19.   fill(255);
  20.   circle.draw();
  21.   noFill();
  22.   polygon.draw();
  23. }
Thanks for the tip. I need to look look into Geomerative library. Looking at the code, it seems that the circle is converted into a polygon before clipping. I need to test if there is any visible difference compared with an actual circle.
The geomerative library is very useful. Thanks for pointing at it! 

I was having serious issues to make a vectorial clipping mask.

Again, many thanks!