Chalkboard - v3.0.1
    Preparing search index...

    Type Alias ChalkboardFunction

    The type for mathematical functions.

    type ChalkboardFunction = {
        field: "real" | "comp";
        rule: ((...x: number[]) => number) | ((...x: number[]) => number)[];
        type:
            | "scalar2d"
            | "scalar3d"
            | "scalar4d"
            | "vector2d"
            | "vector3d"
            | "vector4d"
            | "curve2d"
            | "curve3d"
            | "curve4d"
            | "surface3d";
    }
    Index

    Properties

    Properties

    field: "real" | "comp"

    The field of the function, which can be "real" for the field of real numbers or "comp" for the field of complex numbers

    rule: ((...x: number[]) => number) | ((...x: number[]) => number)[]

    The rule of the function

    type:
        | "scalar2d"
        | "scalar3d"
        | "scalar4d"
        | "vector2d"
        | "vector3d"
        | "vector4d"
        | "curve2d"
        | "curve3d"
        | "curve4d"
        | "surface3d"

    The type of the function