Searched defs:plane (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/
H A Dbox3d-side.cpp93 Box3D::Axis plane = (Box3D::Axis) (desc & 0x7); local
94 plane = (Box3D::is_plane(plane) ? plane : Box3D::orth_plane_or_axis(plane));
95 this->dir1 = Box3D::extract_first_axis_direction(plane);
96 this->dir2 = Box3D::extract_second_axis_direction(plane);
H A Daxis-manip.h145 // does not specify a face. A face can either be given by its plane (e.g, XY)
198 inline bool is_plane (Box3D::Axis plane) { argument
199 return (number_of_axis_directions (plane) == 2);
208 * Given two axis directions out of {X, Y, Z} or the corresponding plane, return the remaining one
209 * We don't check if 'plane' really specifies a plane (i.e., if it consists of precisely two directions).
214 inline Box3D::Axis third_axis_direction (Box3D::Axis plane) { argument
215 return (Box3D::Axis) (plane ^ 0x7);
/inkscape/src/ui/tools/
H A Dbox3d-tool.cpp519 Box3D::Axis plane = (Box3D::Axis) (desc & 0x7); local
520 plane = (Box3D::is_plane(plane) ? plane : Box3D::orth_plane_or_axis(plane));
521 side->dir1 = Box3D::extract_first_axis_direction(plane);
522 side->dir2 = Box3D::extract_second_axis_direction(plane);

Completed in 35 milliseconds