Configuration for a cone shape used in particle systems.
const cone: Cone = { angle: Math.PI / 4, radius: 10, radiusThickness: 0.5, arc: Math.PI * 2,}; Copy
const cone: Cone = { angle: Math.PI / 4, radius: 10, radiusThickness: 0.5, arc: Math.PI * 2,};
Optional
The angle of the cone (in radians).
The angular arc of the cone's base (in radians).
The radius of the cone's base.
The thickness of the cone's base (0 to 1, where 1 is solid).
Configuration for a cone shape used in particle systems.
Example