On Thu, April 5, 2007 7:59 am, wester zela said: > Hi > I'm new using pyrobot. I have to use sine/cosine functions in Pyrobot. How > can I use it?. Is it implement in Pyrobot (With Phyton)?
Webster, It sounds like you are asking a Python question. To use any math function, you need to: import math x = math.sin(1) y = math.cos(0) For more information see http://python.org/ -Doug > Regards > Wester > > > > ____________________________________________________________________________________ > Finding fabulous fares is fun. > Let Yahoo! FareChase search your favorite travel sites to find flight and > hotel bargains. > http://farechase.yahoo.com/promo-generic-14795097_______________________________________________ > Pyro-users mailing list > [email protected] > http://emergent.brynmawr.edu/mailman/listinfo/pyro-users > -- Douglas S. Blank Associate Professor, Bryn Mawr College http://cs.brynmawr.edu/~dblank/ Office: 610 526 6501 _______________________________________________ Pyro-users mailing list [email protected] http://emergent.brynmawr.edu/mailman/listinfo/pyro-users
