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

212 {
213 // *this = point_xy_math::mul(*this, f);
214 x *= f;
215 y *= f;
216 return *this;
217 }
value_type y
Definition geometry.h:191
value_type x
Definition geometry.h:190