FastLED 3.9.15
Loading...
Searching...
No Matches

◆ operator/=() [2/5]

template<typename T>
vec3 & fl::vec3< T >::operator/= ( const float & f)
inline

Definition at line 26 of file geometry.h.

26 {
27 x /= f;
28 y /= f;
29 z /= f;
30 return *this;
31 }