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

45 {
46 x *= f;
47 y *= f;
48 z *= f;
49 return *this;
50 }