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

◆ operator/=() [3/5]

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

Definition at line 50 of file vec3.h.

50 {
51 x /= d;
52 y /= d;
53 z /= d;
54 return *this;
55 }