Searched defs:si (Results 1 - 10 of 10) sorted by relevance

/inkscape/src/
H A Dwinconsole.cpp113 STARTUPINFOW si; local
115 ZeroMemory(&si,sizeof(STARTUPINFO));
116 si.cb = sizeof(STARTUPINFO);
117 si.dwFlags = STARTF_USESTDHANDLES;
118 si.hStdInput = inkscape_stdin;
119 si.hStdOutput = inkscape_stdout;
120 si.hStdError = inkscape_stderr;
131 &si, // startup info - see above
/inkscape/src/2geom/
H A Dbezier-utils.cpp156 unsigned si = 0; local
158 if ( si == src_len ) {
161 if (!IS_NAN(src[si][X]) &&
162 !IS_NAN(src[si][Y])) {
163 dest[0] = Point(src[si]);
164 ++si;
167 si++;
170 for (; si < src_len; ++si) {
171 Point const src_pt = Point(src[si]);
[all...]
H A Dnearest-time.cpp201 unsigned si = c.segN(from); local
203 if (si == ei) {
205 nearest_time(p, c[si], c.segT(from, si), c.segT(to, si));
206 return c.mapToDomain(nearest, si);
210 double nearest = nearest_time(p, c[si], c.segT(from, si));
211 unsigned int ni = si;
213 double mindistsq = distanceSq(p, c[si](neares
253 unsigned si = c.segN(from); local
[all...]
H A Dtoposweep.cpp425 Interval si = Interval(s->fp[1-d], s->tp[1-d]); local
434 if(!si.intersects(Interval(sec->fp[1-d], sec->tp[1-d]))) continue;
/inkscape/src/ui/tools/
H A Dnode-tool.cpp445 ShapeEditor *si = new ShapeEditor(this->desktop); local
446 si->set_item(r.item);
447 this->_shape_editors.insert(const_cast<SPItem*&>(r.item), si); local
/inkscape/src/livarot/
H A DPathConversion.cpp869 // presque tt droit -> attention si on nous demande de bien subdiviser les petits segments
1153 double si = dot(n_tgt, os_tgt); local
1154 if ( si < 0 ) {
1158 si = dot(n_tgt, oe_tgt);
1159 if ( si < 0 ) {
1229 double si = dot(n_tgt, os_tgt); local
1230 if ( si < 0 ) {
1236 si = dot(n_tgt, oe_tgt);
1237 if ( si < 0 ) {
H A DShape.cpp1686 double si = cross(av, bv); local
1688 if (si > 0.000001) tstSi = 1;
1689 if (si < -0.000001) tstSi = -1;
/inkscape/src/ui/tool/
H A Dmulti-path-manipulator.cpp155 std::set<ShapeRecord>::iterator si = shapes.find(i->first); local
156 if (si == shapes.end()) {
161 ShapeRecord const &sr_new = *si;
175 shapes.erase(si); // remove the processed record
/inkscape/src/extension/internal/
H A Dodf.cpp1337 StyleInfo si; local
1348 si.fillColor = buf;
1349 si.fill = "solid";
1353 si.fillOpacity = buf;
1360 si.fill = "gradient";
1373 si.strokeColor = buf;
1375 si.strokeWidth = buf;
1376 si.stroke = "solid";
1380 si.strokeOpacity = buf;
1387 si
[all...]
/inkscape/src/widgets/
H A Ddesktop-widget.cpp2185 set_adjustment (GtkAdjustment *adj, double l, double u, double ps, double si, double pi) argument
2190 (si != gtk_adjustment_get_step_increment(adj)) ||
2195 gtk_adjustment_set_step_increment(adj, si);

Completed in 47 milliseconds