home *** CD-ROM | disk | FTP | other *** search
- // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
- // see COPYRIGHT for reuse legalities
- //
-
- #import <appkit/appkit.h>
-
- #import "RIBCommand.h"
-
- @interface RIBPointsPolygons:RIBCommand
- {
- RtInt nPolys, *nVertices, *vertices;
- char *nPolysBuf, *cntBuf;
- }
-
- - setNPolys:(RtInt)newNPolys nVertices:(RtInt *)newNVertices vertices:(RtInt *)newVertices
- n:(int)newN tokens:(RtToken *)newTokens parms:(RtPointer *)newParms archiveVector:(char **)newArchiveVector
- printfTypeVector:(int *)newPrintfTypeVector printfNVector:(int *)newPrintfNVector;
-
- - setNPolys:(RtInt)newNPolys;
- - setNVertices:(RtInt *)newNVertices;
- - setVertices:(RtInt *)newVertices;
-
- - (RtInt)nPolys;
- - (RtInt *)nVertices;
- - (RtInt *)vertices;
-
- @end
-