I need some help for a project im working on, i want to make a 3D rotating globe, at the moment i am using a pixel array for my rendering, i would like to keep it like that, but i am not sure how to make the 3D globe with a pixel array. My Bitmap class
1 2 3 4 5 6 7 8 9 10 11
| public class Bitmap {
public final int width; public final int height; public int[] pixels;
public Bitmap(int width, int height) { this.width = width; this.height = height; pixels = new int[width * height]; } |
I need some help to make a rendering method for the globe.