Alexandre Avenel
Alexandre Avenel
It's very easy to delete a bill by mistake (only one click). I suggest to add an "undo" link in the flash message so the user have some seconds to...
`mesh.vertices` returns a copy of all vertices. If you have code like `mesh.vertices.Length`, this will be quite inefficient. It's much better to use `mesh.vertexCount` or cache `mesh.vertices` if you plan...
Catmul-Clark subdivision modifier is implemented in Assimp but was lacking unit-test. This PR add an unit-test of a Blend file composed of default cube with subdivision modifier applied and same...