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

◆ getMax() [2/2]

template<typename T>
template<typename U>
vec2 fl::vec2< T >::getMax ( const vec2< U > & p) const
inline

Definition at line 316 of file geometry.h.

316 {
317 return vec2<U>(fl::max(x, p.x), fl::max(y, p.y));
318 }
constexpr vec2() FL_NOEXCEPT=default
value_type y
Definition geometry.h:191
value_type x
Definition geometry.h:190