Configuration for a circle shape used in particle systems.
const circle: Circle = { radius: 10, radiusThickness: 0.5, arc: Math.PI,}; Copy
const circle: Circle = { radius: 10, radiusThickness: 0.5, arc: Math.PI,};
Optional
The angular arc of the circle (in radians).
The radius of the circle.
The thickness of the circle's shell (0 to 1, where 1 is solid).
Configuration for a circle shape used in particle systems.
Example