| python Programming Glossary: math.radiansPython cos(90) and cos(270) not 0 http://stackoverflow.com/questions/13260296/python-cos90-and-cos270-not-0  First Test import math cX 2 cY 2 r 2 rcX cX r math.cos math.radians 0 rcY cY r math.sin math.radians 0 print rcX #4 print rcY #2.. 2 r 2 rcX cX r math.cos math.radians 0 rcY cY r math.sin math.radians 0 print rcX #4 print rcY #2 r 1 rlX rcX r math.cos math.radians.. 0 print rcX #4 print rcY #2 r 1 rlX rcX r math.cos math.radians 90 rlY rcY r math.sin math.radians 90 print rlX #4 print rlY.. 
 Mutli-threading python with Tkinter http://stackoverflow.com/questions/14379106/mutli-threading-python-with-tkinter  x rad y rad x rad y rad  outline outline oid_angle math.radians random.randint 1 360 oid_speed random.randint 2 5 self._oid.append.. 
 Given a latitude and longitude, and distance, I want to find a bounding box http://stackoverflow.com/questions/1648917/given-a-latitude-and-longitude-and-distance-i-want-to-find-a-bounding-box  latitudeInDegrees longitudeInDegrees halfSideInKm lat math.radians latitudeInDegrees lon math.radians longitudeInDegrees halfSide.. halfSideInKm lat math.radians latitudeInDegrees lon math.radians longitudeInDegrees halfSide 1000 halfSideInKm RADIUS_OF_EARTH.. 
 Get lat/long given current point, distance and bearing http://stackoverflow.com/questions/7222382/get-lat-long-given-current-point-distance-and-bearing  for #lon2 0.36056 the long result I'm hoping for. lat1 math.radians 52.20472 #Current lat point converted to radians lon1 math.radians.. 52.20472 #Current lat point converted to radians lon1 math.radians 0.14056 #Current long point converted to radians lat2 math.asin.. 
 Implementing the Koch Curve? http://stackoverflow.com/questions/932222/implementing-the-koch-curve  it should be a bit more explicit IMHO import math angles math.radians 60 x for x in range 6 sines math.sin x for x in angles cosin.. 
 |