Skip to content

Commit

Permalink
ci fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jabuwu committed May 5, 2024
1 parent 649b94c commit bdd6f8b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/path_constraint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ impl PathConstraint {
}
}

#[must_use]
pub fn set_mix(&mut self, mix: impl Into<Vector2<f32>>) {
let mix: Vector2<f32> = mix.into();
self.set_mix_x(mix.x);
Expand Down
2 changes: 0 additions & 2 deletions src/transform_constraint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ impl TransformConstraint {
}
}

#[must_use]
pub fn set_mix_scale(&mut self, mix_scale: impl Into<Vector2<f32>>) {
let mix_scale: Vector2<f32> = mix_scale.into();
self.set_mix_scale_x(mix_scale.x);
Expand All @@ -146,7 +145,6 @@ impl TransformConstraint {
}
}

#[must_use]
pub fn set_mix(&mut self, mix: impl Into<Vector2<f32>>) {
let mix: Vector2<f32> = mix.into();
self.set_mix_x(mix.x);
Expand Down

0 comments on commit bdd6f8b

Please sign in to comment.