Skip to content
Open
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
4 changes: 2 additions & 2 deletions crates/geom/src/quadratic_bezier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -899,12 +899,12 @@ impl<S: Scalar> QuadraticBezierSegment<S> {
// It's not useful to users of the crate but removing it is a breaking change so it
// stays empty for now.
pub struct FlatteningParameters<S> {
_marker: std::marker::PhantomData<S>
_marker: core::marker::PhantomData<S>
}

impl<S: Scalar> FlatteningParameters<S> {
pub fn new(_curve: &QuadraticBezierSegment<S>, _tolerance: S) -> Self {
Self { _marker: std::marker::PhantomData }
Self { _marker: core::marker::PhantomData }
}
}

Expand Down
Loading