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

◆ operator/=() [1/5]

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

Definition at line 218 of file geometry.h.

218 {
219 // *this = point_xy_math::div(*this, f);
220 x /= f;
221 y /= f;
222 return *this;
223 }
value_type y
Definition geometry.h:191
value_type x
Definition geometry.h:190