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

◆ operator/=() [1/5]

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

Definition at line 51 of file geometry.h.

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