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

    Type Alias Sphere

    Configuration for a sphere shape used in particle systems.

    const sphere: Sphere = {
    radius: 5,
    radiusThickness: 0.8,
    arc: Math.PI,
    };
    type Sphere = {
        arc?: number;
        radius?: number;
        radiusThickness?: number;
    }
    Index

    Properties

    arc?: number

    The angular arc of the sphere (in radians).

    radius?: number

    The radius of the sphere.

    radiusThickness?: number

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