| 127 | } |
| 128 | |
| 129 | xg::shape::Group *xg::shape::Group::AddGroup() { |
| 130 | auto g = std::make_unique<xg::shape::Group>(); |
| 131 | xg::shape::Group *gp = g.get(); |
| 132 | this->AddElement(std::move(g)); |
| 133 | return gp; |
| 134 | } |
| 135 | |
| 136 | void xg::shape::Group::UpdateAttribute(std::string attrName, double val) { |
| 137 | if(attrName == "alpha") { |
no test coverage detected