Eulergraph
    Preparing search index...

    Type Alias CellJSON

    CellJSON: GraphicElementJSON & Pick<
        BaseCell,
        | "angleRad"
        | "startWidth"
        | "startHeight"
        | "relativeTextPosition"
        | "textLabel"
        | "drawCommands"
        | "txtWidth"
        | "txtHeight"
        | "margins"
        | "foreign"
        | "transform"
        | "annotatedText"
        | "labels"
        | "isMultiTextMode",
    > & {
        _angle: number;
        _centerOfRotation: PlainPoint;
        _height: number;
        _position: PlainPoint;
        _width: number;
        compassPoints: CompassPoints
        | null;
        scale: PlainPoint;
        textPosition: PlainPoint | null;
    }