Isometric Drawing Toolkit
    Preparing search index...

    Type Alias DrawingPreference

    Persistent preference that is specified manually by the user.

    type DrawingPreference = {
        shouldCropIsometricViewport: boolean;
        shouldShowAxisArrows: boolean;
        shouldShowCodedPlanNumbers: boolean;
        shouldShowIsometricGrid: boolean;
        shouldShowIsometricStructure: boolean;
        shouldShowOrthographicStructure: boolean;
        shouldShowOrthographicViewsGrid: boolean;
        shouldSplitOrthographicViewsAsThree: boolean;
    }
    Index

    Properties

    shouldCropIsometricViewport: boolean

    Whether the isometric viewport is cropped to fit the axes and structure tightly. To override the cropping behavior, one of the following can be done:

    • Set this as false and set canHaveUndefinedSize to true to have the size unset. (used for uncropped export)
    • Set size parameter fully. (used for main viewport)
    shouldShowAxisArrows: boolean

    Whether the background axis arrows are shown on the isometric drawing.

    shouldShowCodedPlanNumbers: boolean

    Whether the numbers are shown on the coded plan.

    shouldShowIsometricGrid: boolean

    Whether the background grid is shown on the isometric drawing.

    shouldShowIsometricStructure: boolean

    Whether the foreground structure is shown on the isometric drawing.

    shouldShowOrthographicStructure: boolean

    Whether the foreground structure is shown on the orthographic views.

    shouldShowOrthographicViewsGrid: boolean

    Whether the background grid is shown on the orthographic views.

    shouldSplitOrthographicViewsAsThree: boolean

    Sets whether the orthographic views should be split into three images. The images are not laid out so they can only be used for export purpose.