| 1485 | } |
| 1486 | |
| 1487 | inline TinyObjPoint WorldToLocal(const TinyObjPoint &a, const TinyObjPoint &u, |
| 1488 | const TinyObjPoint &v, const TinyObjPoint &w) { |
| 1489 | return TinyObjPoint(dot(a, u), dot(a, v), dot(a, w)); |
| 1490 | } |
| 1491 | |
| 1492 | // TODO(syoyo): refactor function. |
| 1493 | static bool exportGroupsToShape(shape_t *shape, const PrimGroup &prim_group, |
no test coverage detected