Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int angle= Math.round((float)Math.toRadians(180));
- double SUBDIVISIONS=2000;
- for(double theta = 0; theta < angle; theta += SUBDIVISIONS){
- GL11.glVertex2f((float)Math.cos(theta), (float)Math.sin(theta));
- }
- GL11.glEnd();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement