class used to create a pathdata object which can be used for a path.
although most methods are pretty straightforward it might be useful to
look at the SVG specification.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
relhline(self,
x)
horizontal line to relative |
source code
|
|
|
|
|
relvline(self,
y)
vertical line to relative |
source code
|
|
|
bezier(self,
x1,
y1,
x2,
y2,
x,
y)
bezier with xy1 and xy2 to xy absolut |
source code
|
|
|
relbezier(self,
x1,
y1,
x2,
y2,
x,
y)
bezier with xy1 and xy2 to xy relative |
source code
|
|
|
smbezier(self,
x2,
y2,
x,
y)
smooth bezier with xy2 to xy absolut |
source code
|
|
|
relsmbezier(self,
x2,
y2,
x,
y)
smooth bezier with xy2 to xy relative |
source code
|
|
|
qbezier(self,
x1,
y1,
x,
y)
quadratic bezier with xy1 to xy absolut |
source code
|
|
|
relqbezier(self,
x1,
y1,
x,
y)
quadratic bezier with xy1 to xy relative |
source code
|
|
|
smqbezier(self,
x,
y)
smooth quadratic bezier to xy absolut |
source code
|
|
|
relsmqbezier(self,
x,
y)
smooth quadratic bezier to xy relative |
source code
|
|
|
ellarc(self,
rx,
ry,
xrot,
laf,
sf,
x,
y)
elliptival arc with rx and ry rotating with xrot using large-arc-flag
and sweep-flag to xy absolut |
source code
|
|
|
relellarc(self,
rx,
ry,
xrot,
laf,
sf,
x,
y)
elliptival arc with rx and ry rotating with xrot using large-arc-flag
and sweep-flag to xy relative |
source code
|
|
|
|