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

◆ operator/=() [4/5]

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

Definition at line 210 of file geometry.h.

210 {
211 // *this = point_xy_math::div(*this, d);
212 x /= d;
213 y /= d;
214 return *this;
215 }