FreakingGenius - v0.1.0
    Preparing search index...

    Interface MathPrimitive

    A rendered LaTeX expression placed at an absolute canvas position.

    interface MathPrimitive {
        color: string;
        id: string;
        kind: "math";
        latex: string;
        position: Point;
        scale: number;
    }
    Index

    Properties

    color: string

    Ink colour for the rendered expression.

    id: string

    Unique primitive identifier (UUID v4).

    kind: "math"
    latex: string

    LaTeX source string, e.g. "\\frac{a}{b}".

    position: Point

    Top-left anchor in canvas pixels.

    scale: number

    Render scale factor — 1.0 = default size.