quakeforge/tools/Forge/Bundles/MapEdit/Clipper.h
Jeff Teunissen 0e5cd14829 tactical whitespace bomb
Add return-type information to all methods, split up lines properly where
I could find them, and ran the whole thing through uncrustify. Looks purty
now. :)
2010-11-28 15:31:38 +09:00

32 lines
493 B
Objective-C

#ifndef Clipper_h
#define Clipper_h
#include <AppKit/AppKit.h>
#include "QF/mathlib.h"
#include "SetBrush.h"
extern id clipper_i;
@interface Clipper: NSObject
{
int num;
vec3_t pos[3];
plane_t plane;
}
- (BOOL) hide;
- (id) XYClick: (NSPoint)pt;
- (BOOL) XYDrag: (NSPoint *)pt;
- (id) ZClick: (NSPoint)pt;
- (id) carve;
- (void) flipNormal;
- (BOOL) getFace: (face_t *)pl;
- (void) cameraDrawSelf;
- (void) XYDrawSelf;
- (void) ZDrawSelf;
@end
#endif // Clipper_h