mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
24 lines
301 B
Objective-C
24 lines
301 B
Objective-C
|
|
extern id clipper_i;
|
|
|
|
@interface Clipper : Object
|
|
{
|
|
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
|
|
|