With my startup team-members, we're looking to build a 3D model of our product, to put it on our website, and then be able to move it 360°, is it possible to do this?
Does it cost a lot?
Thank you for your Help.
With my startup team-members, we're looking to build a 3D model of our product, to put it on our website, and then be able to move it 360°, is it possible to do this?
Does it cost a lot?
Thank you for your Help.
This is fairly easy to do if you are using the Blender in combination with Sketchfab since there is an Addon that is included with Blender which sends the model directly to the website for you.(Although it can be buggy so I'll show how to do it without the Addon)
At the time of writing, the free version of SketchFab allows you to upload .blend files that are a maximum of 50MB.
When the model is ready to be uploaded, you can pack all the textures individually or write a script that can iterate through all the textures and pack them automatically. Once this is done then the .blend file will contain copies of the images.
This will be important for loading the scene file to Sketchfab, otherwise you can load them manually afterwards.

Next, go to the SketchFab website and locate the blue Upload button and then use the directory menu to select the .blend file that you would like to upload.

It's that simple to load a model, here it is shown in the interactive 3D viewer.

Now if you want to embed the model and viewer into a website click the Embed button and copy the contents of the mini popup dialogue.

Now paste this into the HTML code of your website as shown in the following image.

Here's what the page looks like after the code is embedded. btw, the low quality banding is from the animated .gif, not sketchFab or Blender.

There is a page here that has some extra information on preparing the material so it will function correctly with exporters/SketchFab.
Yes, it is possible and it doesn't cost a lot. I recommend using Unity3D 5. Unity 3D is a game engine that can run on almost any platform. It can also run on any web browser if you install the Unity plugin.
If the user doesn't have the Unity plugin installed, it will ask the user to install it.
With the latest Unity3D 5 released, it can run anything on Website without Plugin. I think that Unity is the best way to do this. It uses the new web technology called "WebGL" to render 3D Objects, instead of its plugin. WebGl is supported everywhere.
Short answer:
1) Model your product in using Blender. Then BAKE your 3D model.
2) Install Unity 5 and import your model. Add a rotating C# script to it that detects mouse input and rotates your model.
3) Build the project as WebGl(Preview) format and you are good to go.
License: Unity is free as long as your company make < 100,000 every year. If you make bigger than that, you are required to buy a Unity license which cost only $1500. Its worth it.
For the script I mentioned in #2, You can just Google "Unity Rotate 3D Object with Mouse". You will find many scripts.
20 Minutes of Unity3D tutorial for your team should be fine t o accomplish this.
*.objfiles from Blender using WebGL. – ComFreek Dec 02 '14 at 16:45