@standardbeagle/ux-core - v0.1.0
    Preparing search index...

    Interface Point

    3-D point used as input to kmeans.

    Channel meaning is caller-defined — for color quantization, x/y/z are typically RGB or LAB axes.

    interface Point {
        x: number;
        y: number;
        z: number;
    }
    Index

    Properties

    x y z

    Properties

    x: number

    First axis (e.g. R or L*).

    y: number

    Second axis (e.g. G or a*).

    z: number

    Third axis (e.g. B or b*).