Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have some 3d models written in 3dmax/maya/cad/4dcinema , i wand to display them in my website so user can rotate the model and inspect it .

i have found this on the internet http://replimat.com/thingiview/examples/client_side_ajax.html i think it will work IF i could somehow convert those models from 3dmax/maya/cad/3dcinema to OBJ/STL .

is there any converter available for linux ? or any other method to display those models in web browser without having to install anything on the browser ? thank you .

share|improve this question
1  
Write a WebGL-based viewer, and become rich and famous. // ontopic: there are no such viewers yet. – c69 Oct 19 '11 at 17:11

6 Answers

up vote 1 down vote accepted

Export your model in maya to a wavefront(.obj) file. Then you could use a library like three.js, along with this script to load and view .obj files within the browser

obj to three.js json

Programming the moveable camera can also be done using the library. If you want to use the default formats, it will be tricky as you may need to write the parser yourself if there isn't one and the spec is freely available.

share|improve this answer
any unix softwares to convert stuff to .obj ? – Ronan Dejhero Oct 21 '11 at 19:27
Wings3D has a built in converter to waveform, but I am not sure if it will accept 3dmax/maya's default file format. But I am sure there should be a common export/import format in 3dmax/maya and Wings3d – vishakvkt Oct 31 '11 at 16:37
Blender can convert many files into Wavefront OBJ. There is also always the option of using VTK to load a mesh and export it as OBJ. – Nathan May 3 '12 at 3:32

I remember 3dsmax support obj format, regarding the other apps I don't remember. Anyway, you can use try this tool, you didn't mention which formats you saved from 3dsmax/maya/cad/3dcinema but it supports many format.

share|improve this answer
Hi Lior , have you checked the link in my question , there's a rotating 3d object , try moving it . i want to use such viewer to view 3d object right from the browser . 3d objects i want to view are default formats for 3dsmax/maya/cad/3dcinema – Ronan Dejhero Sep 3 '11 at 17:06

Check this link. - http://www.thoro.de/page/3dnp-introduction-en

Visitors don't need to install anything on their browser, just click and go. Your 3d model loading takes some time, for that a progress bar is shown.

share|improve this answer

For the widest range of existing solutions you won't beat converting your models to VRML.

This format has plugins that support browsers as far back as IE 3 and Netscape 4. There are a large number of free and commercial plugins that handle this format. If you don't want the user to rely on plugins there are also java applet based viewers.

There should be a variety of tools that will convert your models to VRML as well, even if you have to save to an intermediate format first.

The main downside of VRML is lack of fancy new features like shaders, bones and complex texturing but whether those things are necessary all depends what you're trying to achieve.

share|improve this answer

You can try to use this webservice http://showwebgl.com it does not support 3dsmax directly but you could export your model into obj or collada then upload it. Have a look at the faq if it fits your need. http://showwebgl.com/faq

share|improve this answer
Thank you , but the problem is i want to display the models in my website :) – Ronan Dejhero Mar 12 '12 at 8:15
You can embed it with the iframe code, and it will be on your website – trigrou Mar 12 '12 at 16:13
Will be a bad idea for my site members – Ronan Dejhero Mar 13 '12 at 0:18

I've done this using X3DOM. It allows you to script interaction with the 3D object using javascript.

  1. First export from 3ds Max as VRML.
  2. Convert the VRML to X3DOM by copying and pasting the code into this online converter.
  3. Simply insert the converted code into your web page where desired.

Because the 3D model is now part of the dom you can manipulate it with javascript and style it with CSS. Here's an example.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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