]> git.tdb.fi Git - libs/gl.git/blob - source/clip.h
Drop Id tags and copyright notices from files
[libs/gl.git] / source / clip.h
1 #ifndef MSP_GL_CLIP_H_
2 #define MSP_GL_CLIP_H_
3
4 namespace Msp {
5 namespace GL {
6
7 class ClipPlane
8 {
9 public:
10         double eq[4];
11
12         ClipPlane(double, double, double, double);
13         void apply_to(unsigned);
14
15         static void disable(unsigned);
16 };
17
18 } // namespace GL
19 } // namespace Msp
20
21 #endif