Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
kovacsv committed Nov 6, 2013
2 parents 31c69f5 + f02607c commit 8bd77b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Useful links:
<li><a href="http://kovacsv.github.com/JSModeler/documentation/examples/legobuilder.html">Lego Builder</a> is an interactive lego builder application.</li>
<li><a href="http://kovacsv.github.com/JSModeler/documentation/examples/tictactoe.html">3D Tic-Tac-Toe</a> is a Tic-Tac-Toe game with 3D interface.</li>
<li><a href="http://kovacsv.github.com/JSModeler/documentation/examples/robot/robot.html">Robotic Arm</a> is a realtime robotic arm simulator.</li>
<li><a href="http://kovacsv.github.com/JSModeler/documentation/examples/csg.html">CSG Example</a> contains constructive solid geometry examples.</li>
<li><a href="http://kovacsv.github.com/JSModeler/documentation/examples/svgto3d.html">SVGTo3D</a> contains examples of using SVG to model converter.</li>
<li><a href="http://kovacsv.github.com/JSModeler/documentation/examples/deform.html">Deform</a> is a realtime polygon soft selection tool.</li>
<li><a href="http://kovacsv.github.com/JSModeler/documentation/examples/solids.html">Solid Body Viewer</a> is an example of using the SVG viewer.</li>
Expand Down
6 changes: 2 additions & 4 deletions documentation/tutorial/svgto3d.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
<title>JSModeler SVG To 3D Tutorial</title>

<script type="text/javascript">
var viewer = null;

function Load ()
{
var viewerSettings = {
Expand All @@ -29,7 +27,7 @@
farClippingPlane : 100000.0
};

viewer = new JSM.Viewer ();
var viewer = new JSM.Viewer ();
if (!viewer.Start ('svgcanvas', viewerSettings)) {
viewer = null;
return;
Expand Down Expand Up @@ -103,7 +101,7 @@
farClippingPlane : 100000.0
};

viewer = new JSM.Viewer ();
var viewer = new JSM.Viewer ();
if (!viewer.Start ('svgcanvas', viewerSettings)) {
viewer = null;
return;
Expand Down
2 changes: 1 addition & 1 deletion src/core/jsm.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var JSM = {
mainVersion : 0,
subVersion : 20
subVersion : 22
};

JSM.Eps = 0.00000001;
Expand Down

0 comments on commit 8bd77b3

Please sign in to comment.