First,sorry for my bad english. I do my best.
I try to write tools (extensions) in Inkscape.
In the fils "bezmisc.py" several definitions are declared but I do'nt understant why a point (named tpoint) is defined with two pair of coordonates :
Code: Select all
def tpoint((x1,y1),(x2,y2),t):
return x1+t*(x2-x1),y1+t*(y2-y1)
This code can be finded here : http://inkscape.modevia.com/doxygen.html"codebox">
Code: Select all
return x1+t*(x2-x1),y1+t*(y2-y1)