mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
317d3bddb8
a GNUstep port of the original Quake editor for NeXTstep, QuakeEd.app.
24 lines
309 B
Objective-C
24 lines
309 B
Objective-C
|
|
extern id clipper_i;
|
|
|
|
@interface Clipper: NSObject
|
|
{
|
|
int num;
|
|
vec3_t pos[3];
|
|
plane_t plane;
|
|
}
|
|
|
|
- (BOOL) hide;
|
|
- XYClick: (NSPoint) pt;
|
|
- (BOOL) XYDrag: (NSPoint *) pt;
|
|
- ZClick: (NSPoint) pt;
|
|
- carve;
|
|
- flipNormal;
|
|
- (BOOL) getFace: (face_t *) pl;
|
|
|
|
- cameraDrawSelf;
|
|
- XYDrawSelf;
|
|
- ZDrawSelf;
|
|
|
|
@end
|
|
|