(Window.Event<Window.MouseState> provokedBy)
| 259 | Mat4 p = camera.projectionMatrix(); |
| 260 | Mat4 v = camera.view(); |
| 261 | |
| 262 | p.transpose(); |
| 263 | v.transpose(); |
| 264 | |
| 265 | t = new Mat4(p).mul(v); |
| 266 | |
| 267 | f = properties.get(Box.frame); |
| 268 | |
| 269 | return true; |
| 270 | } |
| 271 | |
| 272 | @Override |
| 273 | public void result(List<FLinePointHitTest.Hit> hit) { |
| 274 | |
| 275 | } |
| 276 | |
| 277 | Vec3 tmp = new Vec3(); |
| 278 |
nothing calls this directly
no test coverage detected