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

224 {
225 // *this = point_xy_math::div(*this, p);
226 x /= p.x;
227 y /= p.y;
228 return *this;
229 }