| 439 | } |
| 440 | |
| 441 | void CBoxGeom::get_extensions_bt(const Fvector& axis, float center_prg, float& lo_ext, float& hi_ext) |
| 442 | { |
| 443 | VERIFY(m_geom_transform); |
| 444 | const dReal* rot = NULL; |
| 445 | const dReal* pos = NULL; |
| 446 | dVector3 p; |
| 447 | dMatrix3 r; |
| 448 | dGeomID g = geometry_bt(); |
| 449 | get_final_tx_bt(pos, rot, p, r); |
| 450 | GetBoxExtensions(g, cast_fp(axis), pos, rot, center_prg, &lo_ext, &hi_ext); |
| 451 | } |
| 452 | |
| 453 | void CBoxGeom::get_max_area_dir_bt(Fvector& dir) |
| 454 | { |
no test coverage detected