/inkscape/src/ |
H A D | knot-holder-entity.cpp | 222 Geom::Affine rot = Geom::Affine(Geom::Scale(scl)) * Geom::Affine(Geom::Rotate(theta)); local 224 rot[4] = t[Geom::X]; 225 rot[5] = t[Geom::Y]; 226 item->adjust_pattern(rot, true, _fill ? TRANSFORM_FILL : TRANSFORM_STROKE); 255 Geom::Affine rot = (Geom::Affine)scl * Geom::Rotate(theta); local 258 rot[4] = t[Geom::X]; 259 rot[5] = t[Geom::Y]; 260 item->adjust_pattern(rot, true, _fill ? TRANSFORM_FILL : TRANSFORM_STROKE);
|
H A D | sp-star.cpp | 337 Geom::Point rot = rot90_rel (o, biss); local 339 // multiply rot by star->rounded coefficient and the distance to the star point; flip for next 342 ret = (star->rounded * prev_len) * rot; 344 ret = (star->rounded * next_len * -1) * rot;
|
/inkscape/src/live_effects/ |
H A D | lpe-dynastroke.cpp | 143 Affine rot,slant; local 144 rot = Affine(c, -s, s, c, 0, 0 ); 146 Piecewise<D2<SBasis> > nn = unitVector(v * ( rot * slant ) ); 148 rot = Affine(-s, -c, c, -s, 0, 0 ); 149 nn = nn * (slant * rot );
|
H A D | lpe-tangent_to_curve.cpp | 87 Geom::Rotate rot(Geom::Rotate::from_degrees(-angle)); 88 derivA = derivA * rot;
|
H A D | spiro.cpp | 862 double scale, rot; 868 rot = seg_th - th; 873 th_even = (1./384) * ks[3] + (1./8) * ks[1] + rot; 892 thsub = rot - .25 * ks[0] + (1./32) * ks[1] - (1./384) * ks[2] + (1./6144) * ks[3]; 1030 double scale, rot; 1036 rot = seg_th - th; 1041 th_even = (1./384) * ks[3] + (1./8) * ks[1] + rot; 1062 thsub = rot - .25 * ks[0] + (1./32) * ks[1] - (1./384) * ks[2] + (1./6144) * ks[3];
|
H A D | lpe-copy_rotate.cpp | 236 Geom::Rotate rot(-Geom::rad_from_deg(rotation_angle * (i))); 237 Geom::Affine m = pre * rot * Geom::Translate(origin); 395 Rotate rot(-rad_from_deg(rotation_angle * i)); 396 Affine t = pre * rot * Translate(origin);
|
H A D | lpe-transform_2pts.cpp | 366 double rot = transformed.angle() - original.angle(); local 400 m *= Geom::Rotate(rot);
|
/inkscape/src/svg/ |
H A D | svg-affine.cpp | 122 Geom::Rotate const rot(Geom::rad_from_deg(args[0])); 125 * rot 129 a = rot * a;
|
H A D | path-string.h | 127 * \param rot the angle in degrees 129 PathString &arcTo(Geom::Coord rx, Geom::Coord ry, Geom::Coord rot, argument 135 _appendValue(rot);
|
/inkscape/src/extension/internal/ |
H A D | wmf-print.cpp | 1337 double rot = -1800.0 * std::atan2(tf[1], tf[0]) / M_PI; // 0.1 degree rotation, - sign for MM_TEXT local 1397 int irem = ((int) round(rot)) % 900 ; 1400 rot = (double)(((int) round(rot)) - irem); 1401 rotb = rot * M_PI / 1800.0; 1402 if (std::abs(rot) == 900.0) { 1434 round(rot), 1435 round(rot),
|
H A D | emf-print.cpp | 1979 double rot = -1800.0 * std::atan2(tf[1], tf[0]) / M_PI; // 0.1 degree rotation, - sign for MM_TEXT local 2032 int irem = ((int) round(rot)) % 900 ; 2035 rot = (double)(((int) round(rot)) - irem); 2036 rotb = rot * M_PI / 1800.0; 2037 if (std::abs(rot) == 900.0) { 2068 round(rot), 2069 round(rot),
|
/inkscape/src/2geom/ |
H A D | elliptical-arc.cpp | 651 Rotate rot(rotationAngle()); // the matrix in F.6.5.3 652 Rotate invrot = rot.inverse(); // the matrix in F.6.5.1 677 _ellipse.setCenter(c * rot + mid);
|
/inkscape/src/live_effects/parameter/ |
H A D | filletchamferpointarray.cpp | 386 Geom::Rotate rot(Geom::Rotate::from_degrees(-90)); 387 derivA = derivA * rot;
|
/inkscape/src/extension/dbus/ |
H A D | document-interface.cpp | 408 gdouble rot = ((rotation / 180.0) * 3.14159265) - ( 3.14159265 / 2.0); local 418 sp_repr_set_svg_double(newNode, "sodipodi:arg1", rot); 419 sp_repr_set_svg_double(newNode, "sodipodi:arg2", rot);
|
/inkscape/src/libuemf/ |
H A D | uemf.c | 1789 \param rot Rotation angle in degrees, positive is counter clockwise from the x axis. 1802 U_FLOAT rot, 1810 rot *= (2.0 * U_PI)/360.0; 1812 mat1.M11 = cos(rot); // set up the rotation matrix 1813 mat1.M12 = -sin(rot); 1814 mat1.M21 = sin(rot); 1815 mat1.M22 = cos(rot); 1799 xform_alt_set( U_FLOAT scale, U_FLOAT ratio, U_FLOAT rot, U_FLOAT axisrot, U_FLOAT eDx, U_FLOAT eDy ) argument
|
H A D | uemf.h | 3403 U_XFORM xform_alt_set(U_FLOAT scale, U_FLOAT ratio, U_FLOAT rot, U_FLOAT axisrot, U_FLOAT eDx, U_FLOAT eDy);
|
/inkscape/share/extensions/ |
H A D | gcodetools.py | 1661 def rot(self, theta): member in class:P
|