I have this function which returns two values and I want to repeat the same with those returned values.
fPoint = getFirstPoint (x, y, currCalcX, currCalcY)
newCurrValX, newCurrValY = fPoint
print(newCurrValX, newCurrValY)
Above function returns values like this:
250.0 60.0
I want to apply these values on currCalcX and currCalcY and repeat the function getFirstPoint()
until None
is returned.