Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Neg for Direction2d and Direction3d #11179

Merged
merged 1 commit into from
Jan 2, 2024
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions crates/bevy_math/src/primitives/dim2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ impl std::ops::Deref for Direction2d {
}
}

impl std::ops::Neg for Direction2d {
type Output = Self;
fn neg(self) -> Self::Output {
Self(-self.0)
}
}

/// A circle primitive
#[derive(Clone, Copy, Debug)]
pub struct Circle {
Expand Down
7 changes: 7 additions & 0 deletions crates/bevy_math/src/primitives/dim3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ impl std::ops::Deref for Direction3d {
}
}

impl std::ops::Neg for Direction3d {
type Output = Self;
fn neg(self) -> Self::Output {
Self(-self.0)
}
}

/// A sphere primitive
#[derive(Clone, Copy, Debug)]
pub struct Sphere {
Expand Down