| 373 | } |
| 374 | |
| 375 | void CPHGeometryOwner::setStaticForm(const Fmatrix& form) |
| 376 | { |
| 377 | if (!b_builded) |
| 378 | return; |
| 379 | Fmatrix f; |
| 380 | f.set(form); |
| 381 | get_mc_vs_transform(f.c, form); |
| 382 | GEOM_I i = m_geoms.begin(), e = m_geoms.end(); |
| 383 | for (; i != e; ++i) |
| 384 | (*i)->set_static_ref_form(f); |
| 385 | } |
| 386 | |
| 387 | void CPHGeometryOwner::setPosition(const Fvector& pos) |
| 388 | { |
nothing calls this directly
no test coverage detected