Articles about min3D’

Feb 18, 2011

Min3D for Android: Using The Accelerometer To Control The Camera

Posted by Dennis in 3D, Android 15 comments

NOTE: This OpenGL ES 1.1 framework isn’t maintained anymore. Check out the OpenGL ES 2.0 Rajawali framework which also supports live wallpapers. I haven’t done anything with Min3D for while. I know people have logged some bugs on Google Code but I haven’t had the time to look at them yet. Shame on me. Seeing the [...]


Nov 2, 2010

Min3D for Android: Fog

Posted by Dennis in 3D, Android 1 comment

NOTE: This OpenGL ES 1.1 framework isn’t maintained anymore. Check out the OpenGL ES 2.0 Rajawali framework which also supports live wallpapers. Here’s something I just added to Min3D: fog. Just a few lines of code are needed: scene.fogColor(new Color4(0, 0, 0, 255) ); scene.fogNear(10); scene.fogFar(40); scene.fogEnabled(true); You can download the .apk containing all the examples [...]


Nov 2, 2010

Min3D for Android: Loading Multiple MD2 files

Posted by Dennis in 3D, Android No comments

NOTE: This OpenGL ES 1.1 framework isn’t maintained anymore. Check out the OpenGL ES 2.0 Rajawali framework which also supports live wallpapers. This was a request from a Min3D user. It’s a short tutorial about how to load multiple animated MD2 files with Min3D. If you don’t know what MD2 files are, then read this. The [...]


Oct 21, 2010

Min3D for Android: Sky Box Tutorial

Posted by Dennis in 3D, Android 9 comments

NOTE: This OpenGL ES 1.1 framework isn’t maintained anymore. Check out the OpenGL ES 2.0 Rajawali framework which also supports live wallpapers. I’ve justed committed a new class to the Min3D repository on Google Code: SkyBox. Here’s how to use it: public void initScene() { /** * Create a new Skybox. The first parameter specifies the [...]


May 25, 2010

Loading an animated MD2 file (min3D framework for Android)

Posted by Dennis in 3D, Android 5 comments

NOTE: This OpenGL ES 1.1 framework isn’t maintained anymore. Check out the OpenGL ES 2.0 Rajawali framework which also supports live wallpapers. I just updated min3D for Android with an MD2 file importer.  MD2 is a format that was developed by ID Software and originally used for Quake II and other games. MD2 can be used [...]