LABoyd2
Joined 5 September 2015
This is my personal reference library.
editIt is intended to hold:
My contributions to the OpenSCAD users manual.
edit- User:LABoyd2/Boolean 150919
- User:LABoyd2/2D objects 150919
- User:LABoyd2/3D objects 150919
- User:LABoyd2/Vector stand alone page 150927
- OpenSCAD User Manual/General
- OpenSCAD User Manual/Conditional and Iterator Functions
- User defined function and modules
- Manual Contents
- User:LABoyd2/contents from OpenSCAD_User_Manual 151106
- User:LABoyd2/contents from The_OpenSCAD_Language 151106
- User:LABoyd2/revised The_OpenSCAD_Language 151113
- User:LABoyd2/new import file 151111
- User:LABoyd2/Import . . . . . . . . . . . . . . Spare File
- User:LABoyd2/contents from Print version 151106
- Polyhedron̽
- Special Variables
Ideas for use with OpenSCAD.
editIdeas for WikiBooks use
editMisc other
edit- 1 some markup
- {{incomplete}} MyIntroduction __TOC__ {{BookCat}} __FORCETOC__ {{TOC right}}
- https://www.mediawiki.org/wiki/Help:Magic_words
- 2 vector interpolate
- ufomorace wrote
- Lerp Linearly interpolates between two vectors.
- LerpUnclamped Linearly interpolates between two vectors.
- For this, check out my code and it's result here:
- http://forum.openscad.org/Irregular-mesh-generated-tp13765p13779.html
- 3 libraries
- Not a single library, but a number of libs and designs with
- some quite interesting functions:
- http://www.thingiverse.com/WilliamAAdams/designs
- e.g.:
- Geodesic Maths for OpenScad - v0.1
- http://www.thingiverse.com/thing:10540
- Quaternions for OpenScad
- http://www.thingiverse.com/thing:10249
- ciao, Torsten.
- 4 regular shapes
- use <MCAD/regular_shapes.scad>
- egg(20, 20*1.39);
- There is a bug.
- Edit the library, near the bottom in module egg() change the cube() to square().
- Also prob. good to comment out the test just below.
- 5 beginners tutorial
- 6 Wallace
- 7 Rendering_a_gallery_of_images
- 8 undersize holes
- 9 Pages that link to "OpenSCAD User Manual/Modules"
- OpenSCAD User Manual (← links | edit)
- OpenSCAD User Manual/The OpenSCAD Language (transclusion) (← links | edit)
- OpenSCAD User Manual/Command Glossary (← links | edit)
- User:KevinCole/Collections/OpenSCAD (← links | edit)
- OpenSCAD User Manual/Print version (transclusion) (← links | edit)
- 10- Print Version
- Found the order part of the problem. There are 3 independent list for the order of files which make up the manual.
- First is the OpenSCAD_User_Manual#Overview at the beginning of the manual.
- Second is OpenSCAD_User_Manual/The_OpenSCAD_Language which determine the order for the on line version.
- Third is OpenSCAD User Manual/Print version which determines the order for the print version.
- The print version has all the section headings missing.
- 11 - Import
- > OpenSCAD can now export STL, OFF, AMF, DXF, SVG, CSG and PNG (image).
- >
- STL, OFF and DXF are imported using import().
- CSG can be imported using include<>
- PNG can be imported using surface()
- We have open pull requests for SVG and AMF, which require a bit more work/testing.
- We require a valid file suffix to determine type, but that’s possible to improve.