In Figma, when you create a polygon or star shape, you can adjust the number of points and the inner radius (for stars). Which property directly controls the number of corners or points on these shapes?
Think about how many corners a shape has and which setting changes that number.
The 'Points' property controls how many corners or points a polygon or star has. Increasing this number adds more corners.
You create a star shape in Figma and adjust the 'Inner Radius' slider. What visual change will you see as you increase the inner radius?
Think about what happens when the inner radius grows larger relative to the outer radius.
Increasing the inner radius moves the star's inner points farther from the center, making the star's spikes longer and more pronounced.
You want to calculate the coordinates of each point of a regular polygon with n sides centered at the origin (0,0) with radius r. Which formula correctly calculates the x-coordinate of the k-th point (0-based index)?
Recall that points are evenly spaced around a circle, and cosine gives the horizontal coordinate.
The x-coordinate of each point on a regular polygon is calculated using x = r * cos(2πk/n), where k is the point index and n is the number of points.
Given the formula for star points, a developer wrote this code to calculate the y-coordinate of the inner points of a star with n points and inner radius r_in:
y = r_in * cos(π * k / n)
What is wrong with this formula?
Think about the relationship between sine and cosine for coordinates on a circle.
For coordinates on a circle, the y-coordinate is calculated using sine, not cosine. Using cosine for y causes incorrect vertical positioning.
You are designing a business intelligence dashboard in Figma that uses polygon and star shapes to represent performance metrics. You want to ensure the shapes are accessible and clear for all users. Which practice should you prioritize?
Think about accessibility and clarity for all users, including those with visual impairments.
High contrast colors improve visibility, and text labels help users understand the meaning of shapes, making the dashboard accessible and clear.