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

◆ operator/=() [3/5]

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

Definition at line 50 of file geometry.h.

50 {
51 // *this = point_xy_math::div(*this, d);
52 x /= d;
53 y /= d;
54 return *this;
55 }