| 183 | |
| 184 | |
| 185 | void dGeomBoxGetLengths (dGeomID g, dVector3 result) |
| 186 | { |
| 187 | dUASSERT (g && g->type == dBoxClass,"argument not a box"); |
| 188 | dxBox *b = (dxBox*) g; |
| 189 | result[0] = b->side[0]; |
| 190 | result[1] = b->side[1]; |
| 191 | result[2] = b->side[2]; |
| 192 | } |
| 193 | |
| 194 | |
| 195 | dReal dGeomBoxPointDepth (dGeomID g, dReal x, dReal y, dReal z) |
no outgoing calls
no test coverage detected