MCPcopy Create free account
hub / github.com/PerroEngine/Perro / min

Method min

perro_source/core/perro_structs/src/structs/structs_3d/vector3.rs:176–178  ·  view source on GitHub ↗
(self, rhs: Self)

Source from the content-addressed store, hash-verified

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]

Calls

no outgoing calls