SpiecsEngine
 
Loading...
Searching...
No Matches

◆ operator<<() [5/6]

YAML::Emitter & Spices::operator<< ( YAML::Emitter & out,
const glm::vec4 & v )

Definition at line 195 of file YamlUtils.h.

196 {
197 out << YAML::Flow;
198 out << YAML::BeginSeq << v.x << v.y << v.z << v.w << YAML::EndSeq;
199 return out;
200 }