Formula to find points on the circumference of a circle, given the center of the circle and the radius

走远了吗. 提交于 2019-12-04 05:56:37
user_CC

For a circle with origin (j, k) and radius r:

x(t) = r cos(t) + j
y(t) = r sin(t) + k

where you need to run this equation for t taking values within the range from 0 to 360, then you will get your x and y each on the boundary of the circle.

For more information: http://www.math.com/tables/geometry/circles.htm

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!