Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions modeling-cmds/openapi/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -5636,6 +5636,10 @@
}
]
},
"tangent_chain": {
"description": "If true, also cut edges that are tangent to the selected edges.",
"type": "boolean"
},
"tolerance": {
"description": "The maximum acceptable surface gap computed between the cut surfaces. Must be positive (i.e. greater than zero).",
"allOf": [
Expand Down Expand Up @@ -5714,6 +5718,10 @@
}
]
},
"tangent_chain": {
"description": "If true, also cut edges that are tangent to the selected edges.",
"type": "boolean"
},
"tolerance": {
"description": "The maximum acceptable surface gap computed between the cut surfaces. Must be positive (i.e. greater than zero).",
"allOf": [
Expand Down
8 changes: 8 additions & 0 deletions modeling-cmds/src/def_enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1469,6 +1469,10 @@ define_modeling_cmd_enum! {
#[serde(default, skip_serializing_if = "EdgeCutVersion::is_default")]
#[builder(default)]
pub version: EdgeCutVersion,
/// If true, also cut edges that are tangent to the selected edges.
#[serde(default, skip_serializing_if = "super::is_false")]
#[builder(default)]
pub tangent_chain: bool,
}

/// Cut the list of given edges with the given cut parameters.
Expand Down Expand Up @@ -1511,6 +1515,10 @@ define_modeling_cmd_enum! {
#[serde(default, skip_serializing_if = "EdgeCutVersion::is_default")]
#[builder(default)]
pub version: EdgeCutVersion,
/// If true, also cut edges that are tangent to the selected edges.
#[serde(default, skip_serializing_if = "super::is_false")]
#[builder(default)]
pub tangent_chain: bool,
}

/// Determines whether a brep face is planar and returns its surface-local planar axes if so
Expand Down