Template:Jscad: Difference between revisions

From BITPlan Wiki
Jump to navigation Jump to search
No edit summary
(Undo revision 9244 by Wf (talk))
Line 59: Line 59:
<h1>{{{title|}}}</h1>
<h1>{{{title|}}}</h1>
<div id="jscadviewer"></div>
<div id="jscadviewer"></div>
<h2>Playground</h2>
You can try out modifications of the source code right here.
<textarea id='jscadcode' style="height: 500px">{{{code|}}}</textarea>
<input type="submit" value="Update" onclick="updateSolid(); return false;">
<script>
  // call javascript in middle of page
  // https://stackoverflow.com/a/19869671/1497139
  renderJscad();
</script>
}}
}}
= Source code =
= Source code =

Revision as of 14:30, 16 June 2019

Usage

{{jscad|title=OpenJSCAD example|code=function main() {
    return CSG.cube();
}
}}

Example

OpenJSCAD example

Playground

You can try out modifications of the source code right here.

Source code

function main() {
    return CSG.cube();
}