Cached normals?
![Jarel](https://secure.gravatar.com/avatar/b7f0983cba3215036af76fbb96d61bc6?&r=pg&s=100&d=https%3A%2F%2Fvanillicon.com%2Fb7f0983cba3215036af76fbb96d61bc6_100.png)
Hi. I'm updating some code from 3.x that exports scene geometry.
DzObject.getCachedGeom() used to return DzPolyMesh* and now returns DzVertexMesh*. Easy enough to get the vertex positions from this, but I can't see how to get the transformed normals. Is there still a way to do this please?
Comments
Cast it to a DzFacetMesh with qobject_cast(your_pointer)
That worked. Thanks very much.