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

◆ operator*=() [1/2]

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

Definition at line 30 of file vec3.h.

30 {
31 x *= f;
32 y *= f;
33 z *= f;
34 return *this;
35 }