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 32 of file geometry.h.

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