3 This file is part of libmspgl
4 Copyright © 2008 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
14 ClipPlane::ClipPlane(double a, double b, double c, double d)
22 void ClipPlane::apply_to(unsigned n)
24 glClipPlane(GL_CLIP_PLANE0+n, eq);
25 glEnable(GL_CLIP_PLANE0+n);
28 void ClipPlane::disable(unsigned n)
30 glDisable(GL_CLIP_PLANE0+n);