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

◆ operator*=() [2/2]

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

Definition at line 18 of file vec3.h.

18 {
19 x *= f;
20 y *= f;
21 z *= f;
22 return *this;
23 }