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

◆ operator*=() [1/2]

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

Definition at line 33 of file geometry.h.

33 {
34 x *= f;
35 y *= f;
36 z *= f;
37 return *this;
38 }