| 416 | get_final_tx(m_geom_transform, p, R, bufV, bufM); |
| 417 | } |
| 418 | void CODEGeom::get_final_tx(dGeomID g, const dReal*& p, const dReal*& R, dReal* bufV, dReal* bufM) |
| 419 | { |
| 420 | if (is_transform(g)) |
| 421 | { |
| 422 | computeFinalTx(g, bufV, bufM); |
| 423 | R = bufM; |
| 424 | p = bufV; |
| 425 | } |
| 426 | else |
| 427 | { |
| 428 | R = dGeomGetRotation(g); |
| 429 | p = dGeomGetPosition(g); |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | void CODEGeom::set_local_form_bt(const Fmatrix& xform) |
| 434 | { |
nothing calls this directly
no test coverage detected