/inkscape/src/2geom/ |
H A D | angle.h | 67 class Angle class in namespace:Geom 68 : boost::additive< Angle 69 , boost::additive< Angle, Coord 70 , boost::equality_comparable< Angle 71 , boost::equality_comparable< Angle, Coord 75 Angle() : _angle(0) {} function in class:Geom::Angle 76 Angle(Coord v) : _angle(v) { _normalize(); } // this can be called implicitly function in class:Geom::Angle 77 explicit Angle(Point const &p) : _angle(atan2(p)) { _normalize(); } function in class:Geom::Angle 78 Angle(Point const &a, Point const &b) : _angle(angle_between(a, b)) { _normalize(); } function in class:Geom::Angle 80 Angle [all...] |
H A D | elliptical-arc.h | 64 * @param rot Angle of rotation of the X axis of the ellipse in radians 119 * @return Angle between the +X ray of the ellipse and the +X axis */ 120 Angle rotationAngle() const { 133 Angle initialAngle() const { return _angles.initialAngle(); } 134 Angle finalAngle() const { return _angles.finalAngle(); } 157 Angle rot_angle, bool large_arc, bool sweep, 187 bool containsAngle(Angle angle) const { return _angles.contains(angle); } 190 * @param t Angle 195 * @param t Angle 201 Coord timeAtAngle(Angle [all...] |
H A D | ellipse.h | 71 Angle _angle; 117 void setRotationAngle(Angle a) { _angle = a; } 126 Angle rotationAngle() const { return _angle; }
|
H A D | line.h | 67 * @param angle Angle of the line in mathematical convention */ 135 /// Angle the line makes with the X axis, in mathematical convention. 505 AngleInterval ival(Angle(A-O), Angle(B-O)); 506 Angle bisect = ival.angleAt(0.5);
|
H A D | ellipse.cpp | 147 Angle extremes[2][2]; 384 return Angle(atan2(p * iuct)).radians0(); // return a value in [0, 2pi) 625 Angle d1 = distance(ac.rotationAngle() + M_PI/2, bc.rotationAngle()); 626 Angle d2 = distance(ac.rotationAngle() - M_PI/2, bc.rotationAngle());
|
H A D | elliptical-arc.cpp | 126 Angle extremes[2][2]; 831 Angle ymin_a = std::atan2( ray(Y) * cosrot, ray(X) * sinrot ); 832 Angle ymax_a = ymin_a + M_PI; 854 Angle ia = initialAngle(), fa = finalAngle();
|
/inkscape/src/live_effects/ |
H A D | lpe-transform_2pts.h | 70 Geom::Angle previous_angle;
|
H A D | lpe-simplify.cpp | 225 Geom::Angle angleFixed = ray2.angle(); 226 angleFixed -= Geom::Angle::from_degrees(180.0);
|
H A D | lpe-transform_2pts.cpp | 371 Geom::Angle original_angle = original.angle();
|
/inkscape/src/ |
H A D | desktop-events.cpp | 388 Geom::Angle angle(pt); 395 Geom::Angle orig_angle(guide->getNormal()); 396 Geom::Angle snap_angle = angle - orig_angle; 470 Geom::Angle angle(pt); 477 Geom::Angle orig_angle(guide->getNormal()); 478 Geom::Angle snap_angle = angle - orig_angle;
|
H A D | sp-ellipse.cpp | 658 this->start = Geom::Angle::from_degrees(prefs->getDouble("/tools/shapes/arc/start", 0.0)).radians0(); 662 this->end = Geom::Angle::from_degrees(prefs->getDouble("/tools/shapes/arc/end", 0.0)).radians0();
|
/inkscape/src/libuemf/ |
H A D | upmf.h | 2761 Construct transformation matrix from Angle: 2762 sin(Angle) cos(Angle) 0 2763 cos(Angle) -sin(Angle) 0 2771 U_FLOAT Angle; //!< Rotation angle, in degrees member in struct:__anon333 2868 U_PMF_TRANSFORMMATRIX tm_for_gradrect(U_FLOAT Angle, U_FLOAT w, U_FLOAT h, U_FLOAT x, U_FLOAT y, U_FLOAT Periods); 3027 U_PSEUDO_OBJ *U_PMR_ROTATEWORLDTRANSFORM_set(int xmtype, U_FLOAT Angle); 3162 int U_PMR_ROTATEWORLDTRANSFORM_get(const char *contents, U_PMF_CMN_HDR *Header, int *xmtype, U_FLOAT *Angle);
|
H A D | upmf_print.c | 3268 U_FLOAT Angle; local 3269 int status = U_PMR_ROTATEWORLDTRANSFORM_get(contents, NULL, &xmtype, &Angle); 3271 printf(" + xmtype:%d Multiply:%s Angle:%f\n",xmtype,(xmtype ? "Post" : "Pre"), Angle);
|
H A D | upmf.c | 1081 \param Angle Rotation in degrees clockwise of the gradient. 0 is horizontal gradient. 1089 U_PMF_TRANSFORMMATRIX tm_for_gradrect(U_FLOAT Angle, U_FLOAT w, U_FLOAT h, U_FLOAT x, U_FLOAT y, U_FLOAT Periods){ argument 1094 double dang = Angle * 2*U_PI /360.0; 5263 \param Angle Rotation angle, in degrees 5268 U_PSEUDO_OBJ *U_PMR_ROTATEWORLDTRANSFORM_set(int xmtype, U_FLOAT Angle){ argument 5274 {&Angle, 4, 1, U_LE}, 8485 \param Angle Rotation angle, in degrees 8491 U_FLOAT *Angle){ 8492 if(!contents || !xmtype || !Angle){ return(0); } 8500 U_PMF_SERIAL_get(&contents, Angle, 8489 U_PMR_ROTATEWORLDTRANSFORM_get(const char *contents, U_PMF_CMN_HDR *Header, int *xmtype, U_FLOAT *Angle) argument [all...] |