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

197 {
198 // *this = point_xy_math::mul(*this, f);
199 x *= f;
200 y *= f;
201 return *this;
202 }