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

◆ append() [23/24]

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

Definition at line 533 of file str.h.

533 {
534 append("(");
535 append(pt.x);
536 append(",");
537 append(pt.y);
538 append(",");
539 append(pt.z);
540 append(")");
541 return *this;
542 }
Str & append(const T &val)
Definition str.h:440

References Str(), append(), fl::vec3< T >::x, fl::vec3< T >::y, and fl::vec3< T >::z.

+ Here is the call graph for this function: