We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa3069b commit 44f12ddCopy full SHA for 44f12dd
modeling-cmds/src/def_enum.rs
@@ -128,6 +128,11 @@ define_modeling_cmd_enum! {
128
/// Should the extrusion create a new object or be part of the existing object.
129
#[serde(default)]
130
pub extrude_method: ExtrudeMethod,
131
+ /// Only used if the extrusion is created from a face and extrude_method = Merge
132
+ /// If true, seams between the extrusion and the original body will be shown.
133
+ /// Otherwise, seams resulting from the extrusion will be removed where possible.
134
+ #[serde(default)]
135
+ pub show_seams: Option<bool>,
136
}
137
138
/// Command for extruding a solid 2d to a reference geometry.
0 commit comments