Skip to content

Commit 05e2091

Browse files
author
gserena
committed
rename
1 parent 3e3caf0 commit 05e2091

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

modeling-cmds/src/def_enum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ define_modeling_cmd_enum! {
133133
/// If true, seams between the extrusion and the original body will be shown.
134134
/// Otherwise, seams resulting from the extrusion will be removed where possible.
135135
#[serde(default)]
136-
pub show_seams: Option<bool>,
136+
pub merge_coplanar_faces: Option<bool>,
137137
/// Should this extrude create a solid body or a surface?
138138
#[serde(default)]
139139
pub body_type: BodyType,

modeling-session/examples/cube_png.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ async fn main() -> Result<()> {
113113
faces: None,
114114
opposite: Default::default(),
115115
extrude_method: Default::default(),
116-
show_seams: Default::default(),
116+
merge_coplanar_faces: Default::default(),
117117
body_type: Default::default(),
118118
}
119119
.into(),

modeling-session/examples/cube_png_batch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ async fn main() -> Result<()> {
104104
faces: None,
105105
opposite: Default::default(),
106106
extrude_method: Default::default(),
107-
show_seams: Default::default(),
107+
merge_coplanar_faces: Default::default(),
108108
body_type: Default::default(),
109109
}),
110110
cmd_id: random_id(),

modeling-session/examples/lsystem_png_batch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ async fn main() -> Result<()> {
143143
faces: None,
144144
opposite: Default::default(),
145145
extrude_method: Default::default(),
146-
show_seams: Default::default(),
146+
merge_coplanar_faces: Default::default(),
147147
body_type: Default::default(),
148148
}),
149149
cmd_id: random_id(),

0 commit comments

Comments
 (0)