Conversation
Adds a new environment property that adjusts the spacing between lines of multiline text. Positive values increase spacing, negative values decrease it. Default is 0 (standard font line height). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
…ation Extends visualizingBounds() to accept optional x, y, z range parameters, allowing visualization of a specific region of the bounding box. Useful for debugging range-based spatial APIs like .within(z: 0...).
When consecutive loft layers have identical polygons, skip generating intermediate layers since blending identical shapes always produces the same shape regardless of the shaping function. This significantly improves performance for straight extrusion-like lofts. Measured ~65% reduction in execution time for long straight loft parts. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Use Swift's backtick syntax for test function names to improve readability in test output. Names now describe what each test verifies rather than using abbreviated identifiers. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Introduces LayerTransition enum with two cases:
- .interpolated(ShapingFunction) - existing interpolation behavior
- .convexHull - creates 3D convex hull between adjacent layers
The new transition type can be used with the existing `interpolation:`
parameter thanks to Swift's overload resolution:
Loft {
layer(z: 0) { Circle(diameter: 20) }
layer(z: 10, interpolation: .convexHull) { Square(10) }
}
This is useful for creating faceted or tapered transitions between
convex shapes without intermediate cross-section interpolation.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Shows each loft layer as a thin extruded slab at its Z position, with each layer colored distinctly (red, blue, green, orange, etc.) to make it easy to identify individual layers. Useful for verifying layer positions and shapes before running the full loft operation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.