Skip to content

Commit

Permalink
Make CircleApproxParams private
Browse files Browse the repository at this point in the history
It used to be a private utility struct, in `approx`. I made it public
for the transition, but now it's a private utility struct again, only in
`geometry`.
  • Loading branch information
hannobraun committed Sep 19, 2024
1 parent 492643e commit 818d1f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fj-core/src/geometry/curves/circle.rs
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ impl<const D: usize> GenPolyline<D> for Circle<D> {

/// Path approximation parameters for a circle
#[derive(Debug)]
pub struct CircleApproxParams {
struct CircleApproxParams {
increment: Scalar,
}

0 comments on commit 818d1f7

Please sign in to comment.