| 1195 | } |
| 1196 | |
| 1197 | void moveSelectedComponentsTo(const scene::INodePtr& node, const Vector3& direction) |
| 1198 | { |
| 1199 | auto transform = scene::node_cast<ITransformable>(node); |
| 1200 | transform->setType(TRANSFORM_COMPONENT); |
| 1201 | transform->setTranslation(direction); |
| 1202 | transform->freezeTransform(); |
| 1203 | } |
| 1204 | |
| 1205 | // Ortho: Cycle through some vertex selection candidates (a patch with three vertices aligned in the view direction z) |
| 1206 | TEST_F(OrthoViewSelectionTest, CycleVertexSelectionComponentMode) |
no test coverage detected