/inkscape/share/extensions/ |
H A D | synfig_fileformat.py | 18 You should have received a copy of the GNU General Public License 40 layers["PasteCanvas"] = default_composite.copy() 53 layers["circle"] = default_composite.copy() 63 layers["rectangle"] = default_composite.copy() 72 default_shape = default_composite.copy() 83 layers["region"] = default_shape.copy() 88 layers["outline"] = default_shape.copy() 103 layers["linear_gradient"] = default_composite.copy() 112 layers["radial_gradient"] = default_composite.copy() 124 layers["import"] = default_composite.copy() [all...] |
H A D | tar_layers.py | 15 # You should have received a copy of the GNU General Public License 26 import copy namespace 70 newdoc = copy.deepcopy(self.document) 107 layer = copy.deepcopy(_layer)
|
H A D | interp.py | 15 You should have received a copy of the GNU General Public License 19 import inkex, cubicsuperpath, simplestyle, copy, math, bezmisc, simpletransform, pathmodifier namespace 149 start = copy.deepcopy(paths[sorted_ids[i-1]]) 150 end = copy.deepcopy(paths[sorted_ids[i]]) 151 sst = copy.deepcopy(styles[sorted_ids[i-1]]) 152 est = copy.deepcopy(styles[sorted_ids[i]]) 153 basestyle = copy.deepcopy(sst)
|
H A D | rubberstretch.py | 15 You should have received a copy of the GNU General Public License 23 import copy, math, re namespace
|
H A D | edge3d.py | 15 You should have received a copy of the GNU General Public License 19 import inkex, simplepath, sys, copy namespace 106 nn = copy.deepcopy(node) 121 clip.append(copy.deepcopy(node))
|
H A D | split.py | 15 You should have received a copy of the GNU General Public License 82 from copy import copy namespace 88 text.append(copy(n))
|
H A D | svgcalendar.py | 26 You should have received a copy of the GNU General Public License 216 self.style_weekend = self.style_day.copy() 218 self.style_nmd = self.style_day.copy() 220 self.style_month = self.style_day.copy() 224 self.style_day_name = self.style_day.copy() 227 self.style_year = self.style_day.copy() 231 self.style_weeknr = self.style_day.copy()
|
H A D | inkex.py | 25 You should have received a copy of the GNU General Public License 29 import copy namespace 142 TYPE_CHECKER = copy.copy(optparse.Option.TYPE_CHECKER) 204 self.original_document = copy.deepcopy(self.document)
|
H A D | coloreffect.py | 17 You should have received a copy of the GNU General Public License 21 import sys, copy, simplestyle, inkex namespace 127 newnode = copy.deepcopy(node)
|
H A D | ffgeom.py | 18 You should have received a copy of the GNU General Public License 39 def copy(self): member in class:Point 57 def copy(self): member in class:Segment
|
H A D | markers_strokepaint.py | 16 You should have received a copy of the GNU General Public License 22 import copy namespace 35 help="Do not create a copy, modify the markers") 133 mnode = copy.deepcopy(old_mnode)
|
H A D | svg_and_media_zip_output.py | 27 You should have received a copy of the GNU General Public License 100 and copy them to the temporary directory. 121 shutil.copy(absref, self.tmp_dir) 125 shutil.copy(os.path.join(self.tmp_dir, absref), self.tmp_dir)
|
H A D | pathalongpath.py | 15 You should have received a copy of the GNU General Public License 34 import copy namespace 249 p=copy.deepcopy(p0) 268 new.append(copy.deepcopy(sub))
|
H A D | pathmodifier.py | 15 You should have received a copy of the GNU General Public License 31 import copy namespace 71 clone=copy.deepcopy(node) 138 newNode = copy.deepcopy(self.refNode(node))
|
H A D | pathscatter.py | 15 You should have received a copy of the GNU General Public License 34 import copy namespace 171 if self.options.copymode=="copy": 175 #TODO: allow 4th option: duplicate the first copy and clone the next ones. 278 clone=copy.deepcopy(patternList[random.randint(0, len(patternList)-1)]) 281 clone=copy.deepcopy(patternList[counter])
|
H A D | addnodes.py | 20 You should have received a copy of the GNU General Public License 26 import cubicsuperpath, simplestyle, copy, math, re, bezmisc namespace
|
/inkscape/cxxtest/sample/ |
H A D | Makefile.PL | 24 $windows ? copy($source, $target) : symlink($source, $target);
|
/inkscape/src/ |
H A D | sp-use.cpp | 698 Inkscape::XML::Node *copy = NULL; local 700 if (dynamic_cast<SPSymbol *>(orig)) { // make a group, copy children 701 copy = xml_doc->createElement("svg:g"); 705 copy->appendChild(newchild); 707 } else { // just copy 708 copy = orig->getRepr()->duplicate(xml_doc); 712 parent->addChild(copy, repr); 715 SPObject *unlinked = document->getObjectByRepr(copy); 730 // Give the copy our old id and let go of our old repr. 731 copy [all...] |
H A D | sp-path.cpp | 335 SPCurve *curve = _curve_before_lpe->copy(); 391 _curve_before_lpe = new_curve->copy(); 405 return _curve_before_lpe->copy();
|
H A D | text-chemistry.cpp | 163 // Make a copy of each text child 164 Inkscape::XML::Node *copy = ((Inkscape::XML::Node *) i->data)->duplicate(xml_doc); local 166 if (!strcmp(copy->name(), "svg:tspan")) { 167 copy->setAttribute("sodipodi:role", NULL); 168 copy->setAttribute("x", NULL); 169 copy->setAttribute("y", NULL); 173 // put its copy into under textPath 174 textpath->addChild(copy, NULL); // fixme: copy id
|
H A D | sp-marker.cpp | 452 SPItem *copy = SP_ITEM(mark_object->appendChildRepr(node)); local 459 copy->doWriteTransform(copy->getRepr(), dup_transform);
|
/inkscape/src/ui/ |
H A D | clipboard.h | 45 virtual void copy(SPDesktop *desktop) = 0; 61 ClipboardManager(const ClipboardManager &); ///< no copy
|
/inkscape/src/display/ |
H A D | curve.h | 40 SPCurve * copy() const;
|
/inkscape/src/ui/tools/ |
H A D | spray-tool.cpp | 978 Inkscape::XML::Node *copy = old_repr->duplicate(xml_doc); local 979 if(!copy->attribute("inkscape:spray-origin")){ 980 copy->setAttribute("inkscape:spray-origin", spray_origin); 982 parent->appendChild(copy); 983 SPObject *new_obj = doc->getObjectByRepr(copy); 990 Inkscape::GC::release(copy); 1026 Inkscape::XML::Node *copy = old_repr->duplicate(xml_doc); local 1028 if(!copy->attribute("inkscape:spray-origin")){ 1030 copy->setAttribute("inkscape:spray-origin", spray_origin); 1032 spray_origin = copy [all...] |
/inkscape/src/2geom/ |
H A D | solve-bezier-one-d.cpp | 158 std::copy(w, w + N, Right);
|