Skip to content

Commit

Permalink
add new clipstyle properties
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbjordan committed Nov 16, 2023
1 parent aed0aff commit 77e4831
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -489,12 +489,20 @@ export interface DisplayStyleModelAppearanceProps
modelId?: string;
}

/** Wire format describing a ClipIntersectionStyle. */
export interface ClipIntersectionStyleProps {
color?: RgbColorProps;
width?: number;
}

/** Wire format describing a ClipStyle. */
export interface ClipStyleProps {
produceCutGeometry?: boolean;
cutStyle?: CutStyleProps;
insideColor?: RgbColorProps;
outsideColor?: RgbColorProps;
colorizeIntersection?: boolean;
intersectionStyle?: ClipIntersectionStyleProps;
}

/**
Expand Down

0 comments on commit 77e4831

Please sign in to comment.