RE: [Plib-users] Vertex lists
Brought to you by:
sjbaker
From: Norman V. <nh...@ca...> - 2000-03-24 14:09:51
|
vampman writes: > >How can get access to the vertex list from a ssgEntity? > ssgEntity *entity; if (entity->isAKindOf(ssgTypeLeaf())) { float *vertexList = ((ssgLeaf)entity)->getVertex(0); } You probably would be better off testing for ssgTypeVtxTable() ect but you should see the idea :) Norman |