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 RIBSkew:RIBCommand
- {
- RtFloat angle, dx1, dx2, dy1, dy2, dz1, dz2;
- RtMatrix myMatrix;
- }
-
- - setAngle:(RtFloat)newAngle
- dx1:(RtFloat)newDX1 dy1:(RtFloat)newDY1 dz1:(RtFloat)newDZ1
- dx2:(RtFloat)newDX2 dy2:(RtFloat)newDY2 dz2:(RtFloat)newDZ2;
-
- - getAngle:(RtFloat *)anglePtr
- dx1:(RtFloat *)dx1Ptr dy1:(RtFloat *)dy1Ptr dz1:(RtFloat *)dz1Ptr
- dx2:(RtFloat *)dx2Ptr dy2:(RtFloat *)dy2Ptr dz2:(RtFloat *)dz2Ptr;
-
- @end
-