diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-05-01 16:13:57 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-05-01 16:13:57 +0200 |
commit | 094535c010320967639e8e86f974d878e80baa72 (patch) | |
tree | efc3094b20355dcbeebb2c4ece4fcfc69bffedb5 /doc/3dformat.html | |
parent | c07d0c2d2f6f7b0eb6e92cc6204bf05037957e82 (diff) |
Imported Upstream version 1.7.0upstream/1.7.0
Diffstat (limited to 'doc/3dformat.html')
-rw-r--r-- | doc/3dformat.html | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/doc/3dformat.html b/doc/3dformat.html new file mode 100644 index 0000000..e60a432 --- /dev/null +++ b/doc/3dformat.html @@ -0,0 +1,109 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> + <head> + <title>3D viewing file format</title> + <meta http-equiv="content-type" content="text/html; + charset=windows-1252"> + <meta name="author" content="Graeme Gill"> + </head> + <body> + <h2><b>3D Viewing Format<br> + </b></h2> + Gamut and other 3D output visualisations can be created in one of 3 + formats:<br> + <br> + <b>VRML</b><br> + A legacy web 3D file format, using the <b>.wrl</b> + file extension.<br> + Either a standalone viewer of a web browser + plugin is needed to view the file.<br> + <br> + <b>X3D</b><br> + A current web 3D file format modeled after VRML, + using the <b>.x3d</b> file extension.<br> + Either a standalone viewer of a web browser + plugin is needed to view the file.<br> + <br> + <b>X3DOM</b><br> + An HTML file using a javascript viewer and an X3D + scene, using the <b>.x3d.html</b> file extension.<br> + Any web browser supporting javascript and WebGL + can be used to display this.<br> + <br> + By default ArgyllCMS tools will output VRML format, but the defaul + can be overridden by setting the environment variable<br> + <b>"ARGYLL_3D_DISP_FORMAT"</b> to <b>"VRML"</b>, <b>"X3D"</b> or <b>"X3DOM"</b><br> + <br> + Note that the X3DOM file has references to the x3dom.css and + x3dom.js support files in the same directory as the created + .x3d.html file, and the tools will create a copy of these files in + that directory if they don't exist. These two files must be copied + with the .x3d.html if it is moved somewhere else.<br> + <br> + To check if your browser supports X3DOM, try <a + href="http://www.x3dom.org/check/">this test page</a>.<br> + <br> + X3DOM navigation in Web browser:<br> + <p>"Examine" - default viewing mode, which can be<br> + re-activate this mode by pressing the "e" key.</p> + <table style="border-collapse:collapse" border="1" width="350px"> + <tbody> + <tr> + <th>Function</th> + <th>Mouse Button</th> + </tr> + </tbody><tbody> + <tr> + <td>Rotate</td> + <td>Left / Left + Shift</td> + </tr> + <tr> + <td>Pan</td> + <td>Mid / Left + Ctrl</td> + </tr> + <tr> + <td>Zoom</td> + <td>Right / Wheel / Left + Alt</td> + </tr> + <tr> + <td>Set center of rotation</td> + <td>Double-click left</td> + </tr> + </tbody> + </table> + <br> + <br> + <table style="border-collapse:collapse" border="1" width="350px"> + <thead><tr> + <th>Function</th> + <th>Key</th> + </tr> + </thead> + <tbody> + <tr> + <td>Reset view</td> + <td>r</td> + </tr> + <tr> + <td>Show all</td> + <td>a</td> + </tr> + <tr> + <td>Upright</td> + <td>u</td> + </tr> + </tbody> + </table> + <br> + <br> + <br> + <br> + <br> + <br> + <br> + <br> + <br> + <br> + <br> + </body> +</html> |