(self, rhs: Self)
| 174 | /// Component-wise minimum. |
| 175 | #[inline] |
| 176 | pub fn min(self, rhs: Self) -> Self { |
| 177 | Self::new(self.x.min(rhs.x), self.y.min(rhs.y), self.z.min(rhs.z)) |
| 178 | } |
| 179 | |
| 180 | /// Component-wise maximum. |
| 181 | #[inline] |
no outgoing calls