13 lines
192 B
Python
13 lines
192 B
Python
import svgutils.transform as sg
|
|
import sys
|
|
|
|
|
|
drawing = sg.fromfile('insect.svg')
|
|
|
|
object = drawing.getroot()
|
|
|
|
object.moveto(100, 0)
|
|
|
|
drawing.append(object)
|
|
|
|
drawing.save('modified_insect.svg') |