Recent content by AlicanC

  1. A

    Undergrad Finding coordinates of a point in a circle with angle

    Ah, you are right! I was making calculations with radians. Thank you both so much! I was trying to figure this out for two days! Normally I post my questions to forums related to coding or just ask my friends, but can't get an answer :D
  2. A

    Undergrad Finding coordinates of a point in a circle with angle

    Thanks for the answer, but I have a problem. I wrote some code to put this in action. The code starts from "0" and adds "20" to the angle until the vaule is greater than to "360". I don't know why but the code produced this: http://c.imagehost.org/0346/2008-08-03_092702.png As you can see...
  3. A

    Undergrad Finding coordinates of a point in a circle with angle

    I have a point (x,y), a distance (d) and an angle (a). I need a method to find a point using x,y,d and a. For example: http://c.imagehost.org/0836/03082008299.png I will apply this on a 3D environment, but I am not going to use the 3rd dimension so it's safe. This is also about programming...