75 if ( is_enabled( XY_PLANE ) )
83 xy_plane[3] = cursor_[2];
90 xy_plane[3] = -cursor_[2];
93 glClipPlane( GL_CLIP_PLANE0, xy_plane );
97 if ( is_enabled( YZ_PLANE ) )
105 yz_plane[3] = cursor_[0];
112 yz_plane[3] = -cursor_[0];
115 glClipPlane( GL_CLIP_PLANE1, yz_plane );
119 if ( is_enabled( XZ_PLANE ) )
121 GLdouble xz_plane[4];
127 xz_plane[3] = cursor_[1];
134 xz_plane[3] = -cursor_[1];
137 glClipPlane( GL_CLIP_PLANE2, xz_plane );