Open GoogleCodeExporter opened 8 years ago
For the rotation you can check here, he has code provided and I replied on it
with working code (at least in my case)
http://code.google.com/p/min3d/issues/detail?id=70
For the loading event, you should load the model in a Thread.
When I'm multi Threading, I always use a new Thread (background thread). This
will not 'lag' or slow down the application. before you start the thread, you
show a progress dialog. And you can use a handler to cancel it (pass the
ProgressDialog with a variable) and call sendEmptyMessage(1) for example to
identify what must be done.
@Override
public void handleMessage(Message msg) {
switch (msg.what) {
case 1: // Model done loading
if ((pDialog != null) && (pDialog.isShowing()))
pDialog.dismiss();
break;
}
}
Original comment by jens.deblieck
on 28 Jan 2012 at 9:35
hi all
please can anybody provide me code for the rotation of 3D object with touch
thanx
Original comment by goyal.ar...@gmail.com
on 5 Dec 2012 at 7:56
I need to handle touch event on a object, Anyone please help.
Original comment by mee...@gmail.com
on 2 Apr 2013 at 11:27
Original issue reported on code.google.com by
spdeepa...@gmail.com
on 19 Aug 2011 at 10:13