Rename FilletOrChamfer to EdgeCut (#3383)
* Rename FilletOrChamfer to EdgeCut * Update tests
This commit is contained in:
@ -48,10 +48,8 @@ const example = extrude(1, exampleSketch)
|
||||
* `extrude_group_set`: `ExtrudeGroupSet` - A extrude group or a group of extrude groups. (REQUIRED)
|
||||
```js
|
||||
{
|
||||
// The id of the extrusion end cap
|
||||
endCapId: uuid,
|
||||
// Chamfers or fillets on this extrude group.
|
||||
filletOrChamfers: [{
|
||||
edgeCuts: [{
|
||||
// The engine id of the edge to fillet.
|
||||
edgeId: uuid,
|
||||
// The id of the engine command that called this fillet.
|
||||
@ -79,6 +77,8 @@ const example = extrude(1, exampleSketch)
|
||||
},
|
||||
type: "chamfer",
|
||||
}],
|
||||
// The id of the extrusion end cap
|
||||
endCapId: uuid,
|
||||
// The height of the extrude group.
|
||||
height: number,
|
||||
// The id of the extrude group.
|
||||
@ -122,10 +122,8 @@ const example = extrude(1, exampleSketch)
|
||||
{
|
||||
// The extrude group the face is on.
|
||||
extrudeGroup: {
|
||||
// The id of the extrusion end cap
|
||||
endCapId: uuid,
|
||||
// Chamfers or fillets on this extrude group.
|
||||
filletOrChamfers: [{
|
||||
edgeCuts: [{
|
||||
// The engine id of the edge to fillet.
|
||||
edgeId: uuid,
|
||||
// The id of the engine command that called this fillet.
|
||||
@ -153,6 +151,8 @@ const example = extrude(1, exampleSketch)
|
||||
},
|
||||
type: "chamfer",
|
||||
}],
|
||||
// The id of the extrusion end cap
|
||||
endCapId: uuid,
|
||||
// The height of the extrude group.
|
||||
height: number,
|
||||
// The id of the extrude group.
|
||||
|
||||
Reference in New Issue
Block a user