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

◆ operator/=() [1/5]

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

Definition at line 36 of file vec3.h.

36 {
37 x /= f;
38 y /= f;
39 z /= f;
40 return *this;
41 }