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 RIBPatch:RIBCommand
- {
- char *type;
- RtBasis uBasis;
- RtToken uBasisToken;
- RtInt uStep;
- RtBasis vBasis;
- RtToken vBasisToken;
- RtInt vStep;
-
- }
-
- - setType:(char *)newType
- n:(int)newN tokens:(RtToken *)newTokens parms:(RtPointer *)newParms archiveVector:(char **)newArchiveVector
- printfTypeVector:(int *)newPrintfTypeVector printfNVector:(int *)newPrintfNVector;
- - getBases;
-
- - (const char *)type;
- - (RtBasis *)uBasis;
- - (RtToken)uBasisToken;
- - (RtInt)uStep;
- - (RtBasis *)vBasis;
- - (RtToken)vBasisToken;
- - (RtInt)vStep;
-
- @end
-