HoloField - Boundary-to-Volume Generator
    Preparing search index...

    Variable FibonacciSamplerConst

    FibonacciSampler: {
        defaults: { displayRadius: number; sampleCount: number };
        metadata: {
            description: string;
            displayName: string;
            samplerType: "boundary";
        };
        generate(
            boundary: BoundaryField,
            options: BoundarySamplerOptions,
        ): PointDataset;
    } = ...

    Samples the boundary function using a Fibonacci sphere distribution.

    Sample positions are distributed approximately uniformly over the sphere using the golden-angle algorithm, avoiding pole clustering and producing a more even spatial sampling than a latitude–longitude grid.

    Type Declaration

    Sampling configuration.

    Number of samping positions to be added to the datatset.

    Radius of the sampled sphere used for visualization. Does not affect the sampled field values.