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

◆ operator<<() [23/24]

template<typename T>
StrStream & fl::StrStream::operator<< ( const vec2< T > & v)
inline

Definition at line 71 of file strstream.h.

71 {
72 mStr.append("(");
73 mStr.append(v.x);
74 mStr.append(",");
75 mStr.append(v.y);
76 mStr.append(")");
77 return *this;
78 }

References StrStream(), mStr, fl::vec2< T >::x, and fl::vec2< T >::y.

+ Here is the call graph for this function: