Searched refs:sa (Results 1 - 13 of 13) sorted by relevance

/inkscape/src/
H A Dwinconsole.cpp86 SECURITY_ATTRIBUTES sa; local
87 sa.nLength=sizeof(SECURITY_ATTRIBUTES);
88 sa.lpSecurityDescriptor=NULL;
89 sa.bInheritHandle=TRUE;
107 CreatePipe(&inkscape_stdin, &stdin.echo_write, &sa, 0);
108 CreatePipe(&stdout.echo_read, &inkscape_stdout, &sa, 0);
109 CreatePipe(&stderr.echo_read, &inkscape_stderr, &sa, 0);
/inkscape/share/extensions/
H A Dexport_gimp_palette.py36 sa=node.getAttribute('style')
37 if sa!='':
38 styles=simplestyle.parseStyle(sa)
H A Dgcodetools.py2766 sa = 0
2778 sa += abs(a)
2780 if sa == 0 : return [0.,0.]
2785 cx /= sa
2786 cy /= sa
/inkscape/src/display/
H A Dnr-filter-flood.cpp81 Geom::Rect sa = slot.get_slot_area(); local
84 Geom::OptRect optoverlap = intersect( fp_cairo, sa );
89 double dx = fp_cairo.min()[Geom::X] - sa.min()[Geom::X];
90 double dy = fp_cairo.min()[Geom::Y] - sa.min()[Geom::Y];
H A Dnr-filter-image.cpp110 Geom::Rect sa = slot.get_slot_area(); local
112 sa.width(), sa.height());
113 Inkscape::DrawingContext dc(out, sa.min());
174 Geom::Rect sa = slot.get_slot_area(); local
176 sa.width(), sa.height());
183 cairo_translate(ct, -sa.min()[Geom::X], -sa.min()[Geom::Y]);
H A Dnr-filter-tile.cpp61 Geom::Rect sa = slot.get_slot_area(); local
71 Geom::Point shift = sa.min() - tt.min();
/inkscape/src/2geom/
H A Dangle.h354 Coord sa = _end_angle.radians0() - _start_angle.radians0();
355 if (_sweep && sa < 0) sa += 2*M_PI;
356 if (!_sweep && sa > 0) sa -= 2*M_PI;
357 return sa;
H A Dintersection.h54 Intersection(TA const &sa, TB const &sb, TimeA const &ta, TimeB const &tb) argument
57 , _point(lerp(0.5, sa.pointAt(ta), sb.pointAt(tb)))
/inkscape/src/ui/tools/
H A Dpen-tool.cpp382 if( anchor && anchor == this->sa && this->green_curve->is_empty()){
455 this->sa = anchor;
738 if((!anchor || anchor == this->sa) && (this->spiro || this->bspline) && this->npoints > 0 && this->p[0] == this->p[3]){
752 this->sa = anchor;
1001 if (this->green_curve->is_empty() && this->sa && !this->sa->curve->is_empty()) {
1048 if(this->green_curve->is_empty() && this->sa && !this->sa->curve->is_empty()){
1279 this->sa = NULL;
1402 if(this->sa
[all...]
H A Dfreehand-base.cpp101 , sa(NULL)
550 dc->sa = NULL;
686 if ( dc->sa && dc->ea
687 && ( dc->sa->curve == dc->ea->curve )
688 && ( ( dc->sa != dc->ea )
689 || dc->sa->curve->is_closed() ) )
693 if (dc->sa->start && !(dc->sa->curve->is_closed()) ) {
701 if(dc->sa){
702 dc->white_curves = g_slist_remove(dc->white_curves, dc->sa
[all...]
H A Dfreehand-base.h84 SPDrawAnchor *sa; member in class:Inkscape::UI::Tools::FreehandBase
H A Dpencil-tool.cpp212 this->sa = anchor;
287 if ( !this->sa && !this->green_anchor ) {
406 this->sa = NULL;
524 this->sa = NULL;
604 this->sa = NULL;
/inkscape/src/livarot/
H A DPathOutline.cpp948 double const ca = cos (angle), sa = sin (angle); local
949 double csex = ca * sex + sa * sey;
950 double csey = -sa * sex + ca * sey;
1002 double drx = ca * csdx - sa * csdy;
1003 double dry = sa * csdx + ca * csdy;
1047 pos[0] = drx + ca * rx * cb - sa * ry * sb;
1048 pos[1] = dry + sa * rx * cb + ca * ry * sb;
1049 tgt[0] = ca * rx * sb + sa * ry * cb;
1050 tgt[1] = sa * rx * sb - ca * ry * cb;
1052 dtgt[0] = -ca * rx * cb + sa * r
[all...]

Completed in 867 milliseconds