Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mkranga

Pages: [1]
1
Support / Re: GetRotationX
« on: June 30, 2013, 10:40:27 am »
My object interact with mouse. so its little  difficult to track rotation by my self.

This works.  Thank you .
Code: [Select]
public SimpleVector deriveAngles(Matrix mat) {
    SimpleVector s=new SimpleVector();
    float[] m=mat.getDump();
    s.x=(float) Math.atan(m[9]/m[10]);
    s.y=(float) Math.asin(-m[2]);
    s.z=(float) Math.atan(m[4]/m[0]);
    return s;
}

2
Support / GetRotationX
« on: June 29, 2013, 03:36:37 pm »
Hi,

im rotation object(3d) using
Code: [Select]
rotateX(n)
how do i get current rotation?(specific axis)

if jpct can have function like below would be grate
Code: [Select]
float  obj3d.GetRotationX()
thanks

3
News / Re: Website relaunched
« on: November 05, 2012, 05:55:26 pm »
Looks great. Better add image gallery too  :)

4
Projects / Re: 3D Live wallpaper, thanks JPCT-AE.
« on: November 02, 2012, 08:35:17 am »
New version available for free Download

http://www.systemr.tk/android-3d-wallpaper/




5
Projects / 3D Live wallpaper, thanks JPCT-AE.
« on: June 27, 2012, 06:57:38 am »
My first android development. :)
3D Live wallpaper developed in android platform using AIDE.

http://www.systemr.tk/android-3d-wallpaper/

Credit goes to:
  • JPCT-AE
  • Anim8or
  • AIDE
  • GLWallpaperService (markfguerra )


Pages: [1]