Searched refs:two (Results 1 - 6 of 6) sorted by relevance

/inkscape/share/extensions/
H A Dmotion.py87 one,two = bezmisc.beziersplitatt(bez,tees[0])
89 segments.append([cmd,list(two[1]+two[2]+two[3])])
91 one,two = bezmisc.beziersplitatt(bez,tees[0])
92 two,three = bezmisc.beziersplitatt(two,tees[1])
94 segments.append([cmd,list(two[1]+two[2]+two[
[all...]
H A Dcspsubdiv.py31 one, two = beziersplitatt(b,0.5)
33 sp[i][0] = two[2]
34 p = [one[2],one[3],two[1]]
/inkscape/src/ui/widget/
H A Dpanel.cpp118 Gtk::RadioMenuItem *two = Gtk::manage(new Gtk::RadioMenuItem(group, two_label)); local
123 two->set_active(true);
128 _menu->append(*two);
129 _non_horizontal.push_back(two);
134 two->signal_activate().connect(sigc::bind<int, int>(sigc::mem_fun(*this, &Panel::_bounceCall), PANEL_SETTING_MODE, 1));
/inkscape/src/ui/dialog/
H A Dexport.h74 bool bbox_equal(Geom::Rect const &one, Geom::Rect const &two);
H A Dexport.cpp1416 bool Export::bbox_equal(Geom::Rect const &one, Geom::Rect const &two) argument
1420 (fabs(one.min()[Geom::X] - two.min()[Geom::X]) < epsilon) &&
1421 (fabs(one.min()[Geom::Y] - two.min()[Geom::Y]) < epsilon) &&
1422 (fabs(one.max()[Geom::X] - two.max()[Geom::X]) < epsilon) &&
1423 (fabs(one.max()[Geom::Y] - two.max()[Geom::Y]) < epsilon)
1441 * All of the values in this function are rounded to two decimal places
/inkscape/src/
H A Dtext-editing.cpp342 /** recursively divides the XML node tree into two objects: the original will
386 chopped in two such that the line can be created at the root of the text
390 // Disable newlines in a textpath; TODO: maybe on Enter in a textpath, separate it into two
431 // we need to split the entire text tree into two
599 \a one and \a two. It will never return anything higher than \a text. */
600 static SPObject* get_common_ancestor(SPObject *text, SPObject *one, SPObject *two) argument
602 if (one == NULL || two == NULL)
607 while (!(common_ancestor == two || common_ancestor->isAncestorOf(two))) {

Completed in 43 milliseconds