| 126 | } |
| 127 | |
| 128 | Base::Vector3d LocationWidget::getPosition() const |
| 129 | { |
| 130 | return Base::Vector3d( |
| 131 | this->xValue->value().getValue(), |
| 132 | this->yValue->value().getValue(), |
| 133 | this->zValue->value().getValue() |
| 134 | ); |
| 135 | } |
| 136 | |
| 137 | void LocationWidget::setPosition(const Base::Vector3d& v) |
| 138 | { |
no test coverage detected