Difference between revisions of "Template:Jscad"
Jump to navigation
Jump to search
Line 92: | Line 92: | ||
</script> | </script> | ||
<h1>Title</h1> | <h1>Title</h1> | ||
− | <div id=" | + | <div id="jscadviewer"></div> |
<h2>Source code</h2> | <h2>Source code</h2> | ||
Below is the OpenJsCad script for this demo. To build your own models, create a .jscad script | Below is the OpenJsCad script for this demo. To build your own models, create a .jscad script |
Revision as of 09:44, 10 June 2019
Usage
Put your JSCAD code inside a source tag and add a call of this template
{{jscad|code=// title : OpenJSCAD.org Logo // author : Rene K. Mueller // license : MIT License // revision : 0.003 // tags : Logo,Intersection,Sphere,Cube // file : logo.jscad function main () { return union( difference( cube({size: 3, center: true}), sphere({r: 2, center: true}) ), intersection( sphere({r: 1.3, center: true}), cube({size: 2.1, center: true}) ) ).translate([0, 0, 1.5]).scale(10); } }}
Example
Title
Source code
Below is the OpenJsCad script for this demo. To build your own models, create a .jscad script
and use the OpenJsCad parser. For more information see the
OpenJsCad documentation.