splat-transform API Reference - v2.0.5
    Preparing search index...

    Type Alias FilterByValue

    Filter splats by comparing a column value.

    For opacity, scale_0/1/2, and f_dc_0/1/2, the value is specified in user-friendly (transformed) space: linear opacity (0-1), linear scale, and linear color (0-1). The value is automatically converted to raw PLY space before comparison.

    To compare against raw PLY values directly (without the user-friendly conversion), use the _raw suffix (e.g. opacity_raw, scale_0_raw, f_dc_0_raw).

    If the DataTable has a pending spatial transform and the column is affected by it (position, rotation, scale, or SH columns), the transform is applied (baked in) before comparison. This applies to both regular and _raw columns.

    type FilterByValue = {
        columnName: string;
        comparator: "lt" | "lte" | "gt" | "gte" | "eq" | "neq";
        kind: "filterByValue";
        value: number;
    }
    Index

    Properties

    columnName: string

    Name of the column to compare.

    comparator: "lt" | "lte" | "gt" | "gte" | "eq" | "neq"

    Comparison operator.

    kind: "filterByValue"

    Action type identifier.

    value: number

    Value to compare against.