Tagged Questions
1
vote
2answers
814 views
How to draw a smooth circle in Android using OpenGL?
I am learning about OpenGL API on Android. I just drew a circle. Below is the code I used.
public class MyGLBall {
private int points=360;
private float vertices[]={0.0f,0.0f,0.0f};
private ...
2
votes
2answers
3k views
Drawing a circle in OpenGL ES Android, squiggly boundaries
I am new to OpenGL ES and facing a hard time drawing a circle on my GLSurfaceView. Here's what I have so far.
The circle class
public class MyGLBall {
private int points=40;
private float ...
