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

57 {
58 // *this = point_xy_math::div(*this, p);
59 x /= p.x;
60 y /= p.y;
61 return *this;
62 }