FastLED 3.9.15
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages

◆ append() [15/24]

template<typename T>
Str & fl::Str::append ( const rect< T > & rect)
inline

Definition at line 513 of file str.h.

513 {
514 append(rect.mMin.x);
515 append(",");
516 append(rect.mMin.y);
517 append(",");
518 append(rect.mMax.x);
519 append(",");
520 append(rect.mMax.y);
521 return *this;
522 }
Str & append(const T &val)
Definition str.h:440

References Str(), append(), fl::rect< T >::mMax, and fl::rect< T >::mMin.

+ Here is the call graph for this function: