Skip to content

Commit

Permalink
add new clipstyle properties (#5)
Browse files Browse the repository at this point in the history
Co-authored-by: Matthew Jordan <[email protected]>
  • Loading branch information
mattbjordan and mattbjordan authored Nov 16, 2023
1 parent aed0aff commit 2526192
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 2526192

Please sign in to comment.