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

◆ operator/=() [2/5]

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

Definition at line 206 of file geometry.h.

206 {
207 // *this = point_xy_math::div(*this, f);
208 x /= f;
209 y /= f;
210 return *this;
211 }
value_type y
Definition geometry.h:191
value_type x
Definition geometry.h:190