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

◆ operator/=() [5/5]

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

Definition at line 239 of file geometry.h.

239 {
240 // *this = point_xy_math::div(*this, p);
241 x /= p.x;
242 y /= p.y;
243 return *this;
244 }
value_type y
Definition geometry.h:191
value_type x
Definition geometry.h:190