@newkrok/three-particles - v2.1.0
    Preparing search index...

    Type Alias Circle

    Configuration for a circle shape used in particle systems.

    const circle: Circle = {
    radius: 10,
    radiusThickness: 0.5,
    arc: Math.PI,
    };
    type Circle = {
        arc?: number;
        radius?: number;
        radiusThickness?: number;
    }
    Index

    Properties

    arc?: number

    The angular arc of the circle (in radians).

    radius?: number

    The radius of the circle.

    radiusThickness?: number

    The thickness of the circle's shell (0 to 1, where 1 is solid).