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

◆ operator*=() [1/2]

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

Definition at line 30 of file geometry.h.

30 {
31 // *this = point_xy_math::mul(*this, f);
32 x *= f;
33 y *= f;
34 return *this;
35 }