Isometric Drawing Toolkit
    Preparing search index...

    Type Alias IsometricViewportProps

    type IsometricViewportProps = {
        canHaveUndefinedSize?: boolean;
        highlightKind?: HighlightKind;
        size?: {
            height?: number | string;
            viewBox?: string;
            width?: number | string;
        };
    }
    Index

    Properties

    canHaveUndefinedSize?: boolean

    Viewport will have undefined size if not cropped, otherwise the size will be derived automatically if any attributes in size is missing.

    highlightKind?: HighlightKind

    Current highlighting, cuboid for delete action, face for build action. Defaults to face.

    size?: { height?: number | string; viewBox?: string; width?: number | string }

    Size of the viewport, by default it is derived from an automatically determined view box. To fit parent container, set width and height to '100%'.