SpiecsEngine
 
Loading...
Searching...
No Matches

◆ encode()

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

Definition at line 44 of file YamlUtils.h.

45 {
46 Node node;
47 node.push_back(rhs.x);
48 node.push_back(rhs.y);
49 node.push_back(rhs.z);
50 return node;
51 }