How To Make Quarter Circle In Figma

When working with Figma, a cloud-based design software, designers frequently have the responsibility of making distinctive shapes and designs. Among these shapes, the quarter circle is commonly seen in design projects. However, for those unfamiliar with the platform, creating a quarter circle in Figma can present some challenges. This article is dedicated to providing a step-by-step guide on how to make a quarter circle in Figma.

Step 1: Create a New Oval Shape

First, you need to create a new oval shape. To do this, navigate to the left-hand side of your Figma interface and click on the Ellipse Tool. After selecting the Ellipse Tool, you can click anywhere on your canvas to create the oval shape. Hold shift while creating the oval to create a perfect circle.

Step 2: Draw a Rectangle

Once you have your circle, the next step is to create a rectangle. You can do this by selecting the Rectangle Tool from the left-hand menu and then drawing a rectangle over your circle.

Step 3: Position the Rectangle

The rectangle that you just drew needs to be positioned correctly to create a quarter circle. You should position the rectangle such that its corner is at the center of the circle, covering three quarters of the circle. This leaves one quarter of the circle visible – this will be the quarter circle we’re looking for.

Step 4: Subtract the Rectangle from the Circle

Now, it’s time to subtract the rectangle from the circle. This operation can be performed using Figma’s Boolean operations. To do this, first select both the circle and the rectangle. Afterwards, from the top-right toolbar, select the ‘Subtract selection’ operation.

When you perform this operation, Figma subtracts the area of the rectangle from the circle, leaving only the quarter circle visible.

            // select both shapes
            const circle = figma.currentPage.findOne(n => n.name === 'Circle');
            const rectangle = figma.currentPage.findOne(n => n.name === 'Rectangle');
            // subtract rectangle from circle
            figma.currentPage.selection = [circle, rectangle];
            figma.command = 'subtract';
        

Conclusion

There you have it – a simple and quick method to create a quarter circle in Figma. This method can be used to create quarter circles of any size. With this guide, you should now be able to incorporate quarter circles into your designs with ease.