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

◆ operator/=() [2/5]

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

Definition at line 24 of file vec3.h.

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