| 45 | } |
| 46 | |
| 47 | void GuiComponent::renderChildren(const Eigen::Affine3f& transform) const |
| 48 | { |
| 49 | for(unsigned int i = 0; i < getChildCount(); i++) |
| 50 | { |
| 51 | getChild(i)->render(transform); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | Eigen::Vector3f GuiComponent::getPosition() const |
| 56 | { |