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

232 {
233 // *this = point_xy_math::div(*this, d);
234 x /= d;
235 y /= d;
236 return *this;
237 }
value_type y
Definition geometry.h:191
value_type x
Definition geometry.h:190