Website – 3D STL viewer – Thingiview (java)

java logo

Thingiview

Met de thingiview kan je SLT objecten in 3D laten weergeven in een webbrowser doormiddel van Java (Tree.js), zo kun e het model bekijken.

Ps. De webbroweser moet wel OpenGL ondersteunen!

Informatie (ENG)

A javascript (using Canvas and WebGL if available) 3D model viewer. Uses the Three.js 3D Engine. Check out the Examples.

Features:

  • supports binary and ascii STL and OBJ files without requiring any preprocessing, all the parsing is done on the client in javascript
  • everything is done client side in javascript, requires no plugins for most browsers
  • should work in all browsers, including iPhone/iPad (might require Google Chrome Frame for IE)
  • uses HTML canvas or automatically detects and enables webgl if browser supports it
  • configurable colors
  • is made of awesome

Usage:

It’s important that everything is done within window.onload.

thingiurlbase = "/javascripts";

Must be set to the path where the javascript files are located so that related scripts can be loaded dynamically.

thingiview = new Thingiview("id of viewer's container div");

Pass the id of the div to place the viewer into. You can set the width and height on the css for that div.

thingiview.initScene();

Loads the scene into the container div.

thingiview.loadSTL("/path/to/model.stl"); or thingiview.loadOBJ("/path/to/model.obj");

Make sure you pass the full url path to the model file you want to load. This will make an ajax call to the server to fetch it.

thingiview.setShowPlane(true);

true or false. Show or hide the 100×100 grid plane under the object.

thingiview.setBackgroundColor('#ffffff');

Sets the background color of the viewer’s container.

thingiview.setObjectMaterial('solid');

solid or wireframe. Changes the object’s material.

thingiview.setObjectColor('#C0D8F0');

Yep, it sets the object’s color.

thingiview.setRotation(true);

true or false. This causes the object to slowly rotate around the z axis.

thingiview.setCameraView('top');

Possible values include: top, side, bottom, diagonal. Resets the camera view to the desired angle.

thingiview.setCameraZoom(5);

Pass a positive number to zoom the camera in or a negative number to zoom out.

thingiview.displayAlert("This is a message");

Displays the text passed in a window inside the viewer with an Ok button to then hide it.


Om het werkend te maken moest ik er wel veel aan verbouwen, je kan daarvoor mijn voorbeeld downloaden onderaan deze pagina, deze is makkelijk te begrijpen en aan te passen!

Dit is het script met de knoppen:

Dit is echt een plain script en laat alleen het object zien:

Het resultaat:

Thingiviewer voorbeeld


Download Thingiview @ github