SpiecsEngine
 
Loading...
Searching...
No Matches

◆ encode()

static Node YAML::convert< glm::vec4 >::encode ( const glm::vec4 & rhs)
inlinestatic

Definition at line 71 of file YamlUtils.h.

72 {
73 Node node;
74 node.push_back(rhs.x);
75 node.push_back(rhs.y);
76 node.push_back(rhs.z);
77 node.push_back(rhs.w);
78 return node;
79 }