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

    Variable UniformPointCloudSamplerConst

    UniformPointCloudSampler: {
        defaults: { resolution: number; size: number; threshold: number };
        metadata: {
            description: string;
            displayName: string;
            samplerType: "pointCloud";
        };
        generate(
            decoder: BoundDecoder,
            options: SpatialSamplerOptions,
        ): PointDataset;
    } = ...

    Samples a decoded scalar field as a uniform 3D point cloud.

    The sampler evaluates the decoder at regularly spaced positions throughout the specified volume and stores the resulting samples in a PointDataset.

    The resulting points can be used for point-based rendering or other 3D processing techniques.

    This sampler produces a regular spatial distribution of samples, independent of the scalar values returned by the decoder.

    Type Declaration

    Decoder bound to a scalar field to evaluate values at voxel indexes / coordinates.

    Sampling configuration.

    Physical size of the cubic sampling volume.

    Number of sampling positions along each axis.

    Minimum scalar-field value required for a sample to be retained.