mirror of
https://github.com/id-Software/Quake-Tools.git
synced 2026-03-19 16:39:31 +01:00
25 lines
301 B
Objective-C
25 lines
301 B
Objective-C
|
|
extern id clipper_i;
|
|
|
|
@interface Clipper : Object
|
|
{
|
|
int num;
|
|
vec3_t pos[3];
|
|
plane_t plane;
|
|
}
|
|
|
|
- (BOOL)hide;
|
|
- XYClick: (NXPoint)pt;
|
|
- (BOOL)XYDrag: (NXPoint *)pt;
|
|
- ZClick: (NXPoint)pt;
|
|
- carve;
|
|
- flipNormal;
|
|
- (BOOL)getFace: (face_t *)pl;
|
|
|
|
- cameraDrawSelf;
|
|
- XYDrawSelf;
|
|
- ZDrawSelf;
|
|
|
|
@end
|
|
|