Searched defs:degrees (Results 1 - 6 of 6) sorted by relevance
/inkscape/share/extensions/ |
H A D | edge3d.py | 20 from math import degrees, atan2 namespace 46 """Return true if angle (degrees, clockwise, 0 = up/north) is between 96 a = degrees(atan2(params[-2:][0] - last[0],
|
/inkscape/src/extension/internal/ |
H A D | latex-text-renderer.cpp | 311 double degrees = -180/M_PI * Geom::atan2(wotransl.xAxis()); local 312 bool has_rotation = !Geom::are_near(degrees,0.); 326 os << "\\rotatebox{" << degrees << "}{"; local 461 double degrees = -180/M_PI * Geom::atan2(wotransl.xAxis()); local 462 bool has_rotation = !Geom::are_near(degrees,0.); 476 os << "\\rotatebox{" << degrees << "}{"; local
|
/inkscape/src/2geom/ |
H A D | angle.h | 115 /** @brief Get the angle as degrees in math convention. 118 Coord degrees() const { return radians() * (180.0 / M_PI); } function in class:Geom::Angle 119 /** @brief Get the angle as degrees in clock convention. 135 /** @brief Create an angle from its measure in degrees. */ 140 /** @brief Create an angle from its measure in degrees in clock convention. 384 /** @brief Given an angle in degrees, return radians 387 /** @brief Given an angle in radians, return degrees
|
/inkscape/src/ |
H A D | sp-guide.cpp | 504 double const degrees = Geom::deg_from_rad(radians); local 505 int const degrees_int = (int) round(degrees); 506 descr = g_strdup_printf(_("at %d degrees, through (%s,%s)"),
|
H A D | seltrans.cpp | 1198 double degrees = mod360symm(Geom::deg_from_rad(radians)); local 1203 degrees); 1274 double degrees = mod360symm(Geom::deg_from_rad(radians)); local 1278 _("<b>Rotate</b>: %0.2f°; with <b>Ctrl</b> to snap angle"), degrees);
|
H A D | text-editing.cpp | 1090 gdouble degrees = (180/M_PI) * atan2(pixels, source_item->parent->style->font_size.computed / factor); local 1092 sp_te_adjust_rotation(text, start, end, desktop, degrees); 1096 sp_te_adjust_rotation(SPItem *text, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, SPDesktop */*desktop*/, gdouble degrees) argument 1105 if (attributes) attributes->addToRotate(char_index, degrees); 1108 attributes->addToRotate(char_index, degrees); 1114 void sp_te_set_rotation(SPItem *text, Inkscape::Text::Layout::iterator const &start, Inkscape::Text::Layout::iterator const &end, SPDesktop */*desktop*/, gdouble degrees) argument 1123 attributes->setRotate(char_index, degrees); 1127 attributes->setRotate(char_index, degrees);
|
Completed in 35 milliseconds