vote up 0 vote down star

Hi,

I've to create a Web Based Application, that amongst other things, includes the following tasks

  • Loading a 3D model from a database.
  • Display the 3D Model.
  • Doing Inverse Kinematics computations to generate the series of steps for the model to move from an initial to final position.
  • Display the animation in real time.

The application was originally intended to be a PC based application on Qt/OpenGL, but we're investigating whether its feasible to implement it as a Web Based app.

My knowledge on Web Based development is still limited.

What would be the recommended approach/technology in order to come up with a solution for this ?

Thanks!!

Update: Platform Independent solutions preferred. The application needs to run on Mac and Windows machines.

flag

6 Answers

vote up 3 vote down check

If it is a webapp, you should look into Papervision3D (http://papervision3d.org/) for a Flash-based approach (that would be the way if you want it to be relatively platform-independent).

link|flag
vote up 2 vote down

A Java applet will probably do what you want too.

Have a look at java 3d

link|flag
vote up 1 vote down

Well, you certainly cannot do all that in HTML, so it's a matter of choosing you plugin technology.

The way I see it, your best bet is Flash, since this is a mature platform with lots of 3rd party extensions (such as http://www.flashsandy.org/) available to let you do your 3D modeling.

The other alternative is Silverlight, which will give you the power of .NET/C# (rather than scripting).

Both are cross-platform and cross-browser.

link|flag
vote up 0 vote down

There are a number of approaches to this. Some that come to my mind:

  • consider delivering it as an ActiveX component (fastest, but Win32 only).
  • consider using .NET (Silverlight) (Win32, OSX, *nix in the foreseable future through Moonlight; DirectX/Direct3D only)
  • consider using Java, which can access OpenGL as well.
  • consider using any middlewhere that you come across.. there should be dozens.

A problem will probably be the portability. There are two caveats here: Your code needs to run everywhere and it needs 3D acceleration. That's a problem, because you can not be sure if it will have 3D (you can query your context, of course).

You might hence also want to consider to rasterize and render on the CPU (i.e. using MESA3D). If you do not need to allow freeform transformations and want to animate, say, 30 frames and using Mesa you could possibly render 5fps on a typical model on typical hardware, you'd need 6 seconds to calculate the whole scene. That'd be enough.

link|flag
ActiveX is not only Win32-only but also IE-only. – Nouveau Nov 22 '08 at 16:39
You are right Nouveau, did not think of that. – mstrobl Nov 23 '08 at 22:34
vote up 0 vote down

Canvas and JavaScript might be able to render it, depending on the complexity of your 3D Model. See this Canvas 3D example

There's also the Firefox Canvas 3D Addon and the Canvas 3d JS Library for writing 3D applications using it.

link|flag
vote up 0 vote down

Also Google's excellent but new O3D: http://code.google.com/apis/o3d/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.