What are some non-programming books that have made you a better software engineer? Computer Science |
- What are some non-programming books that have made you a better software engineer?
- Bresenham’s Circle Drawing Algorithm
- [Computer Graphics + OpenGL] Ways to render a scene efficiently
- How long did it take you to understand 'Hello World'?
What are some non-programming books that have made you a better software engineer? Posted: 17 Aug 2018 09:41 AM PDT |
Bresenham’s Circle Drawing Algorithm Posted: 17 Aug 2018 03:31 PM PDT https://www.geeksforgeeks.org/bresenhams-circle-drawing-algorithm/ I was looking at Bresenham's algorithm which I'm trying to use to make a MS paint style application. I've implemented it into python and it works. However, I was not sure HOW this worked. I understood all of the algorithm except for the decision parameter. Specifically why it has to be d = 3 – (2 * r) , d = d + (4*x) + 6, d = d + 4 * (x – y) + 10. Is anyone familiar with the algorithm or understands the math behind how these were derived? [link] [comments] |
[Computer Graphics + OpenGL] Ways to render a scene efficiently Posted: 17 Aug 2018 11:54 AM PDT |
How long did it take you to understand 'Hello World'? Posted: 17 Aug 2018 09:15 AM PDT |
You are subscribed to email updates from Computer Science: Theory and Application. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment