| 174 | } |
| 175 | |
| 176 | void CoordinateSystem::setPlacement(const Placement& plm) |
| 177 | { |
| 178 | Vector3d zdir(0, 0, 1); |
| 179 | plm.getRotation().multVec(zdir, zdir); |
| 180 | axis.setBase(plm.getPosition()); |
| 181 | axis.setDirection(zdir); |
| 182 | |
| 183 | plm.getRotation().multVec(Vector3d(1, 0, 0), this->xdir); |
| 184 | plm.getRotation().multVec(Vector3d(0, 1, 0), this->ydir); |
| 185 | } |
nothing calls this directly
no test coverage detected