Searched defs:rot (Results 1 - 10 of 10) sorted by relevance
/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-transform_2pts.cpp | 366 double rot = transformed.angle() - original.angle(); local 400 m *= Geom::Rotate(rot);
|
/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/svg/ |
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/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/share/extensions/ |
H A D | gcodetools.py | 1661 def rot(self, theta): member in class:P
|
/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
|
Completed in 216 milliseconds