/inkscape/share/examples/ |
H A D | istest.pov | 157 rotate <-90, 0, 0> //x first 158 rotate < 0, 0, 0> //z second 159 rotate < 20, 0, 0> //whatever else 160 rotate < 0, -27, 0> //whatever else
|
/inkscape/src/ |
H A D | sp-text.cpp | 74 this->readAttr( "rotate" ); 701 // readSingleAttribute(SP_ATTR_ROTATE, node->attribute("rotate")); 718 case SP_ATTR_ROTATE: attr_vector = &attributes.rotate; break; 756 writeSingleAttributeVector(node, "rotate", attributes.rotate); 816 return !attributes.x.empty() || !attributes.y.empty() || !attributes.dx.empty() || !attributes.dy.empty() || !attributes.rotate.empty(); 848 mergeSingleAttribute(&output->rotate, parent_attrs.rotate, parent_attrs_offset, copy_dxdyrotate ? &attributes.rotate : NULL); 894 eraseSingleAttribute(&attributes.rotate, start_inde [all...] |
H A D | sp-hatch.h | 75 gdouble rotate() const;
|
H A D | sp-hatch.cpp | 74 readAttr("rotate"); 478 gdouble SPHatch::rotate() const function in class:SPHatch 608 double tile_rotate = rotate(); 658 double tile_rotate = rotate();
|
H A D | seltrans.h | 67 void rotate(Geom::Point &pt, unsigned int state); 129 STATE_ROTATE //rotate or skew
|
H A D | seltrans.cpp | 255 // While dragging a handle, we will either scale, skew, or rotate and the "translating" parameter will be false 779 rotate(*position, state); 1221 // rotate affine in rotate 1344 void Inkscape::SelTrans::rotate(Geom::Point &/*pt*/, guint /*state*/) function in class:Inkscape::SelTrans
|
H A D | selection-chemistry.cpp | 1788 Geom::Rotate const rotate(Geom::Rotate::from_degrees(angle_degrees)); 1789 Geom::Affine const final( Geom::Affine(n2d) * rotate * d2n ); 1856 ? "selector:rotate:ccw" 1857 : "selector:rotate:cw" ), 2205 ? "selector:rotate:ccw" 2206 : "selector:rotate:cw" ),
|
/inkscape/src/libnrtype/ |
H A D | Layout-TNG-Input.cpp | 66 _copyInputVector(optional_attributes->rotate, optional_attributes_offset, &new_source->rotate, new_source->text_length); 67 if (!optional_attributes->rotate.empty() && optional_attributes_offset >= optional_attributes->rotate.size()) { 70 for (std::vector<SVGLength>::const_iterator it = optional_attributes->rotate.begin() ; it != optional_attributes->rotate.end() ; ++it) 73 new_source->rotate.resize(1, last_rotate);
|
H A D | Layout-TNG-Compute.cpp | 108 will only have one change of x, y, dx, dy or rotate attribute, which will 123 SVGLength x, y, dx, dy, rotate; // these are reoriented copies of the <tspan> attributes. We change span when we encounter one. member in struct:Inkscape::Text::Layout::Calculator::UnbrokenSpan 510 // we may also have y move orders to deal with here (dx, dy and rotate are done per span) 602 // Start of an unbroken span, we might have dx, dy or rotate still to process 606 if (unbroken_span.rotate._set) glyph_rotate = unbroken_span.rotate.computed * (M_PI/180); 1014 // sub_flow_text_source->rotate = text_source->rotate; 1241 new_span.rotate._set = false; 1255 if (text_source->rotate [all...] |
H A D | Layout-TNG-OutIter.cpp | 573 result->rotate.clear(); 578 result->rotate.reserve(to._char_index - from._char_index); 628 result->rotate.resize(char_index - from._char_index + 1, zero_length); 629 result->rotate.back() = _glyphs[_characters[char_index].in_glyph].rotation;
|
H A D | Layout-TNG.h | 181 std::vector<SVGLength> rotate; member in struct:Inkscape::Text::Layout::OptionalTextTagAttrs 716 std::vector<SVGLength> rotate; member in class:Inkscape::Text::Layout::InputStreamTextSource
|
/inkscape/share/extensions/ |
H A D | nicechart.py | 159 self.OptionParser.add_option("-r", "--rotate", action="store", 160 type="inkbool", dest="rotate", default='False', 343 rotate = self.options.rotate 375 if not rotate: 393 if not rotate: 409 if not rotate: #=vertical 438 if not rotate: #=vertical 460 if not rotate: 601 if not rotate [all...] |
H A D | dimension.py | 65 def addMarker(self, name, rotate): 79 if rotate: 80 arrow.set('transform', 'scale(0.8) rotate(180) translate(12.5,0)')
|
H A D | printing_marks.py | 126 def draw_reg_marks(self, cx, cy, rotate, name, parent): 146 ') rotate('+str(rotate)+')'} 166 def draw_coluor_bars(self, cx, cy, rotate, name, parent): 170 ') rotate('+str(rotate)+')' })
|
H A D | polyhedron_3d.py | 227 def rotate( matrix, angle, axis ):#choose the correct rotation matrix to use function 236 def rot_z( matrix , a):#rotate around the z-axis by a radians 242 def rot_y( matrix , a):#rotate around the y-axis by a radians 248 def rot_x( matrix , a):#rotate around the x-axis by a radians 487 trans_mat = rotate(trans_mat, angle, axis)
|
H A D | gcodetools.py | 2744 def rotate(self, a): member in class:Polygon 3142 poly.rotate(p[1]*math.pi2) 3162 poly.rotate(spiece[0][1]*math.pi2) 3170 poly.rotate(p[1]*math.pi2+p[2]*math.pi2) 3171 surface.rotate(p[2]*math.pi2) 3174 surface.rotate(-p[2]*math.pi2) 3528 poly.rotate(spiece[0][2]*math.pi2) 3533 poly.rotate(p[2]*math.pi2) 5019 # rotate the path to get bounds in defined direction.
|
/inkscape/src/2geom/ |
H A D | conicsec.h | 370 xAx rotate (double angle) const; 378 xAx rotate (const Point & _rot_centre, double _angle) const function in class:Geom::xAx 381 = translate (-_rot_centre).rotate (_angle).translate (_rot_centre);
|
H A D | conicsec.cpp | 911 (*this) = rotate (angle); 1221 xAx xAx::rotate (double angle) const function in class:Geom::xAx
|
/inkscape/share/extensions/ink2canvas/ |
H A D | canvas.py | 173 def rotate(self, angle): member in class:Canvas 174 self.write("ctx.rotate(%f);" % angle)
|
H A D | svg.py | 283 self.ctx.rotate(angle) 287 self.ctx.rotate(-angle)
|
/inkscape/src/extension/internal/pdfinput/ |
H A D | pdf-parser.h | 129 PdfParser(XRef *xrefA, SvgBuilder *builderA, int pageNum, int rotate,
|
H A D | pdf-input.cpp | 602 int rotate = _previewed_page->getRotate(); local 603 if ( rotate == 90 || rotate == 270 ) {
|
H A D | pdf-parser.cpp | 296 int rotate, 305 state(new GfxState(72.0, 72.0, box, rotate, gTrue)), 293 PdfParser(XRef *xrefA, Inkscape::Extension::Internal::SvgBuilder *builderA, int , int rotate, Dict *resDict, PDFRectangle *box, PDFRectangle *cropBox) argument
|
/inkscape/src/extension/internal/filter/ |
H A D | color.h | 1571 "<param name=\"rotate\" gui-text=\"" N_("Hue rotation (°)") "\" type=\"int\" appearance=\"full\" min=\"0\" max=\"360\">0</param>\n" 1595 std::ostringstream rotate; local 1599 rotate << ext->get_param_int("rotate"); 1619 "</filter>\n", rotate.str().c_str(), blend1.str().c_str(), blend2.str().c_str() );
|
/inkscape/src/extension/internal/ |
H A D | odf.cpp | 984 double &rotate, double &/*xskew*/, double &/*yskew*/, 1003 rotate = UVt(0,0); 1643 double rotate; local 1648 analyzeTransform(tf, rotate, xskew, yskew, xscale, yscale); 983 analyzeTransform(Geom::Affine &tf, double &rotate, double & , double & , double &xscale, double &yscale) argument
|