Draw a circle without floating point arithmetic - GeeksQuiz
Given a radius of a circle, draw the circle without using floating point arithmetic.
Following program uses a simple concept. Let the radius of the circle be r. Consider a square of size (2r+1)*(2r+1) around the circle to be drawn. Now walk through every point inside the square. For every every point (x,y), if (x, y) lies inside the circle (or x^2+ y^2 < r^2), then print it, otherwise print space.
Read full article from Draw a circle without floating point arithmetic - GeeksQuiz
No comments:
Post a Comment