Main Menu
Menu

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.

Show posts Menu

Messages - mkranga

#1
Support / Re: GetRotationX
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 .
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
June 29, 2013, 03:36:37 PM
Hi,

im rotation object(3d) using rotateX(n)
how do i get current rotation?(specific axis)

if jpct can have function like below would be grate
float  obj3d.GetRotationX()

thanks
#3
News / Re: Website relaunched
November 05, 2012, 05:55:26 PM
Looks great. Better add image gallery too  :)
#4
Projects / Re: 3D Live wallpaper, thanks JPCT-AE.
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.
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 )