Searched refs:pointAtPercent (Results 1 - 1 of 1) sorted by relevance
/inkscape/share/extensions/ |
H A D | straightseg.py | 21 def pointAtPercent((x1, y1), (x2, y2), percent): function 49 params[:2] = pointAtPercent(params[:2],last[:],self.options.percent) 50 params[2:4] = pointAtPercent(params[2:4],params[-2:],self.options.percent) 53 dest1 = pointAtPercent(last[:],params[-2:],33.3) 54 dest2 = pointAtPercent(params[-2:],last[:],33.3) 55 params[:2] = pointAtPercent(params[:2],dest1[:],self.options.percent) 56 params[2:4] = pointAtPercent(params[2:4],dest2[:],self.options.percent) 58 dest = pointAtPercent(last[:],params[-2:],50) 59 params[:2] = pointAtPercent(params[:2],dest,self.options.percent)
|
Completed in 13 milliseconds