SpiecsEngine
 
Loading...
Searching...
No Matches

◆ encode()

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

Definition at line 19 of file YamlUtils.h.

20 {
21 Node node;
22 node.push_back(rhs.x);
23 node.push_back(rhs.y);
24 return node;
25 }