Euclidean 0 def calc( arg1 ): # Calculate whatever you want to show here, and return it. # For example, to return one half of the input number, # you would put this code here: # return DoubleObject( arg1.value()/ 2 ) # Please refer to the manual for more information. t=arg1.value() x=t*cos(t) y=t*sin(t) return Point(Coordinate(x,y)) 6 2 3 1 1 4 8 5 9 7 10 -0.0262679 -0.105072 %1 %1 2.51305 11.2427 2.01396 0 0 0.604163 0.311463 def calc( arg1 ): # Calculate whatever you want to show here, and return it. # For example, to return one half of the input number, # you would put this code here: # return DoubleObject( arg1.value()/ 2 ) # Please refer to the manual for more information. x=arg1.value() y=(exp(x)+exp(-x))/2 return DoubleObject(y) def calc( arg1 ): # Calculate whatever you want to show here, and return it. # For example, to return one half of the input number, # you would put this code here: # return DoubleObject( arg1.value()/ 2 ) # Please refer to the manual for more information. t=arg1.value() x=t*cos(t) y=t*sin(t) return Point(Coordinate(x,y)) 0