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

◆ operator/=() [4/5]

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

Definition at line 43 of file vec3.h.

43 {
44 x /= d;
45 y /= d;
46 z /= d;
47 return *this;
48 }