Searched defs:nodetype (Results 1 - 5 of 5) sorted by relevance
/inkscape/src/live_effects/ |
H A D | lpe-spiro.cpp | 14 #include "helper/geom-nodetype.h" 83 // TODO: see if this can be simplified by using /helpers/geom-nodetype.cpp:get_nodetype 87 Geom::NodeType nodetype = Geom::get_nodetype(*curve_it1, *curve_it2); local 89 if ( nodetype == Geom::NODE_SMOOTH || nodetype == Geom::NODE_SYMM ) 113 Geom::NodeType nodetype = Geom::get_nodetype(*curve_it1, path_it->front()); local 114 switch (nodetype) {
|
H A D | lpe-fillet-chamfer.cpp | 24 #include "helper/geom-nodetype.h" 420 Geom::NodeType nodetype; local 427 nodetype = get_nodetype(*A, *curve_it1); 429 nodetype = NODE_NONE; 432 nodetype = get_nodetype((*path_it)[counter - 1], *curve_it1); 434 if (nodetype == NODE_CUSP) {
|
/inkscape/src/ |
H A D | sp-shape.cpp | 27 #include "helper/geom-nodetype.h" 1117 Geom::NodeType nodetype = Geom::get_nodetype(*curve_it1, *curve_it2); local 1119 bool c1 = snapprefs->isTargetSnappable(Inkscape::SNAPTARGET_NODE_CUSP) && (nodetype == Geom::NODE_CUSP || nodetype == Geom::NODE_NONE); 1120 bool c2 = snapprefs->isTargetSnappable(Inkscape::SNAPTARGET_NODE_SMOOTH) && (nodetype == Geom::NODE_SMOOTH || nodetype == Geom::NODE_SYMM); 1126 switch (nodetype) {
|
/inkscape/src/live_effects/parameter/ |
H A D | filletchamferpointarray.cpp | 29 #include "helper/geom-nodetype.h" 126 Geom::NodeType nodetype; local 149 nodetype = get_nodetype(path_it->back_open(), *curve_it1); 151 nodetype = get_nodetype(path_it->back_closed(), *curve_it1); 154 nodetype = NODE_NONE; 164 nodetype = get_nodetype((*path_it)[counterCurves - 1], *curve_it1); 166 nodetype = NODE_CUSP; 226 if (nodetype == NODE_CUSP) { 240 if (nodetype == NODE_CUSP) { 279 Geom::NodeType nodetype; local [all...] |
/inkscape/src/ui/tool/ |
H A D | node.cpp | 1443 char const *nodetype = node_type_to_localized_string(_type); local 1448 "<b>%s</b>: drag to shape the path (more: Shift, Ctrl, Alt)"), nodetype); 1454 "<b>%s</b>: drag to shape the path, click to toggle scale/rotation handles (more: Shift, Ctrl, Alt)"), nodetype); 1458 "<b>%s</b>: drag to shape the path, click to select only this node (more: Shift, Ctrl, Alt)"), nodetype);
|
Completed in 31 milliseconds