@dragonspark/chroma-kit
    Preparing search index...

    Interface ConeResponseModel

    Represents a cone response model with properties for its name, transformation matrix, and the inverse of the transformation matrix.

    interface ConeResponseModel {
        inverseMatrix: Matrix3x3;
        matrix: Matrix3x3;
        name: string;
    }
    Index

    Properties

    inverseMatrix: Matrix3x3

    A 3x3 matrix representing the inverse transformation of the cone response model.

    matrix: Matrix3x3

    A 3x3 matrix representing the transformation associated with the cone response model.

    name: string

    The name associated with the cone response model.