View Single Post
Old 9th December 2004, 10:54 PM   #1
LiveWire
Senior Member
Professional user
 
Join Date: Nov 2003
Location: Eugene OR, USA
Posts: 212
Default getting a list of edges.

how do i get a List of ACEdges from a single surface?
Code:
List *edgelist_get_by_surface(List *someList, Surface *theSurface);
(im not on my comp with ac3d so i cant look up the exact spelling of the command.)
im not sure how to use it, cause theres two List*.
Code:
List *MyEdgeList = edgelist_get_by_surface(NULL, MySurface); //???
doesnt work...
Code:
List *MyEdgeList = NULL;
edgelist_get_by_surface(MyEdgeList, MySurface); //???
doesnt work either.
LiveWire is offline   Reply With Quote