Merge remote-tracking branch 'origin/main' into paultag/import

This commit is contained in:
Paul Tagliamonte
2025-04-01 15:18:23 -04:00
30 changed files with 15454 additions and 6609 deletions

View File

@ -138,8 +138,6 @@ async fn inner_chamfer(
radius: LengthUnit(length),
tolerance: LengthUnit(DEFAULT_TOLERANCE), // We can let the user set this in the future.
cut_type: CutType::Chamfer,
// We make this a none so that we can remove it in the future.
face_id: None,
}),
)
.await?;

View File

@ -167,8 +167,6 @@ async fn inner_fillet(
radius: LengthUnit(radius),
tolerance: LengthUnit(tolerance.unwrap_or(DEFAULT_TOLERANCE)),
cut_type: CutType::Fillet,
// We make this a none so that we can remove it in the future.
face_id: None,
}),
)
.await?;