Skip to content

Commit

Permalink
BREAKING(math): remove default impl for cubic curve
Browse files Browse the repository at this point in the history
  • Loading branch information
BD103 committed Jan 13, 2024
1 parent 69760c7 commit 5deac2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_math/src/cubic_splines.rs
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ impl CubicSegment<Vec2> {
}

/// A collection of [`CubicSegment`]s chained into a curve.
#[derive(Clone, Debug, Default, PartialEq)]
#[derive(Clone, Debug, PartialEq)]
pub struct CubicCurve<P: Point> {
segments: Vec<CubicSegment<P>>,
}
Expand Down

0 comments on commit 5deac2f

Please sign in to comment.