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

◆ operator/=() [4/5]

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

Definition at line 225 of file geometry.h.

225 {
226 // *this = point_xy_math::div(*this, d);
227 x /= d;
228 y /= d;
229 return *this;
230 }
value_type y
Definition geometry.h:191
value_type x
Definition geometry.h:190