Viewer
    Preparing search index...

    Interface IVisualizationSettings

    interface IVisualizationSettings {
        distanceLabels: boolean;
        distanceMultiplicationFactor: number;
        lines: IMaterialBasicLineDataPropertiesDefinition;
        pointerPosition: boolean;
        pointLabels: boolean;
        points: IMaterialMultiPointDataPropertiesDefinition;
        edgeControlVisualization?: Pick<
            Partial<IVisualizationSettings>,
            "points" | "lines",
        >;
        wireframe?: boolean;
        wireframeColor?: string;
    }
    Index

    Properties

    distanceLabels: boolean

    If the distance labels are shown. The distance labels display the distance between the points.

    true
    
    distanceMultiplicationFactor: number

    The multiplication factor of the point size when interactions are performed. If the factor is set to 2, the point size is doubled when interacting.

    2
    

    The material properties of the lines.

    pointerPosition: boolean

    If the pointer position is shown. The pointer position displays the position of the pointer.

    true
    
    pointLabels: boolean

    If the point labels are shown. The point labels display the position of the points.

    false
    

    The material properties of the points.

    edgeControlVisualization?: Pick<
        Partial<IVisualizationSettings>,
        "points" | "lines",
    >

    The visualization settings for the edge control of the geometry restrictions. If not defined, the edge control visualization is determined by the general line and point visualization settings.

    wireframe?: boolean

    If the geometry restrictions should display a wireframe.

    This settings is only applied to geometry restrictions that do not have this settings defined already.

    undefined
    
    wireframeColor?: string

    The color of the wireframe.

    This settings is only applied to geometry restrictions that do not have this settings defined already.

    undefined