User:LABoyd2

From Wikibooks, open books for an open world
Jump to navigation Jump to search

This is my personal reference library.[edit | edit source]

It is intended to hold:

My contributions to the OpenSCAD users manual.[edit | edit source]

  1. User:LABoyd2/Boolean 150919
  2. User:LABoyd2/2D objects 150919
    1. User:LABoyd2/polygon 150925
  3. User:LABoyd2/3D objects 150919
    1. User:LABoyd2/cylinder 150920
      1. User:LABoyd2/cylinder over mid 150922
    2. User:LABoyd2/cylinder 150924
    3. User:LABoyd2/polyhedron 160302
  4. User:LABoyd2/Vector stand alone page 150927
    1. User:LABoyd2/Vector from manual 150927
    2. User:LABoyd2/Vector to manual 150928
  5. OpenSCAD User Manual/General
    1. User:LABoyd2/General from manual 151002
    2. User:LABoyd2/General to manual 151003
      1. User:LABoyd2/General introduction 151005
  6. OpenSCAD User Manual/Conditional and Iterator Functions
    1. User:LABoyd2/Conditional and Iterator Functions from manual 151002
    2. User:LABoyd2/Conditional and Iterator Functions to manual 151002
      1. User:LABoyd2/If to manual 151006
  7. User defined function and modules
    1. User:LABoyd2/modules from manual 151008
    2. User:LABoyd2/functions from manual 151008
      1. User:LABoyd2/function, module to manual 151016
      2. User:LABoyd2/function, module,children to manual 151031
    3. User:LABoyd2/function, module from manual 160328
  8. Manual Contents
    1. User:LABoyd2/contents from OpenSCAD_User_Manual 151106
      1. User:LABoyd2/revised OpenSCAD_User_Manual 151108
    2. User:LABoyd2/contents from The_OpenSCAD_Language 151106
      1. User:LABoyd2/revised The_OpenSCAD_Language 151113
      2. User:LABoyd2/new import file 151111
      3. User:LABoyd2/Import . . . . . . . . . . . . . . Spare File
    3. User:LABoyd2/contents from Print version 151106
      1. User:LABoyd2/User Manual Print all 151110
  9. Polyhedron̽
    1. User:LABoyd2/polyhedron from manual 160313̽
    2. User:LABoyd2/polyhedron to manual 160313
  10. Special Variables
    1. User:LABoyd2/special variables from manual 160316̽
    2. User:LABoyd2/special variables to manual 160316

Ideas for use with OpenSCAD.[edit | edit source]

Ideas for WikiBooks use[edit | edit source]

Misc other[edit | edit source]

  1. 1 some markup
    {{incomplete}} MyIntroduction __TOC__ {{BookCat}} __FORCETOC__ {{TOC right}}
    https://www.mediawiki.org/wiki/Help:Magic_words
  2. 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. 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. 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. 5 beginners tutorial
    http://edutechwiki.unige.ch/en/OpenScad_beginners_tutorial
  6. 6 Wallace
    http://kitwallace.co.uk/openscad/workshop-2015-03-03.html
  7. 7 Rendering_a_gallery_of_images
    https://www.mediawiki.org/wiki/Help:Images#Rendering_a_gallery_of_images
  8. 8 undersize holes
    http://hydraraptor.blogspot.com.au/2011/02/polyholes.html
  9. 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. 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. 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.