@inweb/viewer-visualize
    Preparing search index...

    Interface IEllipse

    Defines the markup ellipse object of the viewpoint.

    interface IEllipse {
        color?: string;
        id?: string;
        line_width?: number;
        position: IPoint;
        radius: { x: number; y: number };
    }
    Index

    Properties

    color?: string

    Line color in hexadecimal color syntax #RGB using its primary color components (red, green, blue) written as hexadecimal numbers.

    id?: string

    Internal markup object identifier.

    line_width?: number

    Line width of the ellipse.

    position: IPoint

    Coordinates of the center point (position) of the ellipse.

    radius: { x: number; y: number }

    Ellipse radius along the X and Y axes.