summaryrefslogtreecommitdiff
path: root/src/geom/macros.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/geom/macros.rs')
-rw-r--r--src/geom/macros.rs47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/geom/macros.rs b/src/geom/macros.rs
deleted file mode 100644
index b1b50e22..00000000
--- a/src/geom/macros.rs
+++ /dev/null
@@ -1,47 +0,0 @@
-/// Implement the `Sub` trait based on existing `Neg` and `Add` impls.
-macro_rules! sub_impl {
- ($a:ident - $b:ident -> $c:ident) => {
- impl std::ops::Sub<$b> for $a {
- type Output = $c;
-
- fn sub(self, other: $b) -> $c {
- self + -other
- }
- }
- };
-}
-
-/// Implement an assign trait based on an existing non-assign trait.
-macro_rules! assign_impl {
- ($a:ident += $b:ident) => {
- impl std::ops::AddAssign<$b> for $a {
- fn add_assign(&mut self, other: $b) {
- *self = *self + other;
- }
- }
- };
-
- ($a:ident -= $b:ident) => {
- impl std::ops::SubAssign<$b> for $a {
- fn sub_assign(&mut self, other: $b) {
- *self = *self - other;
- }
- }
- };
-
- ($a:ident *= $b:ident) => {
- impl std::ops::MulAssign<$b> for $a {
- fn mul_assign(&mut self, other: $b) {
- *self = *self * other;
- }
- }
- };
-
- ($a:ident /= $b:ident) => {
- impl std::ops::DivAssign<$b> for $a {
- fn div_assign(&mut self, other: $b) {
- *self = *self / other;
- }
- }
- };
-}