Searched refs:plane (Results 1 - 5 of 5) sorted by relevance

/inkscape/src/
H A Daxis-manip.cpp31 Axis plane = orth_plane_or_axis (axis);
32 return std::make_pair (extract_first_axis_direction (plane), extract_second_axis_direction (plane));
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);
/inkscape/share/extensions/
H A Dgcodetools.py2524 plane = "g17"
2526 # get plane selection:
2530 plane = r.group(1).lower()
2531 if plane == "g17" : r_scale = scale[0] # plane XY -> scale x
2532 if plane == "g18" : r_scale = scale[0] # plane XZ -> scale x
2533 if plane == "g19" : r_scale = scale[1] # plane YZ -> scale y
2535 if plane no
[all...]

Completed in 56 milliseconds