OpenSCAD: Difference between revisions
From Hive76 Wiki
Jump to navigationJump to search
No edit summary |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==Agenda== | ==Agenda== | ||
#Basics | #Basics | ||
##Functions parameters vectors trees | ##Names | ||
##Functions: | |||
###difference() | |||
###sphere() | |||
##parameters | |||
###Goes in the () | |||
###Input for function | |||
##vectors | |||
###[ x, y, z ] | |||
##trees | |||
something(){ | |||
more(){ | |||
etc(); | |||
} | |||
} | |||
#Read a design | #Read a design | ||
##Debugging | ##Debugging | ||
### ! only this | |||
### # highlight | |||
### * ignore | |||
### % background | |||
#Reproduce an object easy way | #Reproduce an object easy way | ||
##Lots | ##Lots of translate | ||
#Again with loop | #Again with loop | ||
##Use rotate vector [0:5:200] | ##Use rotate vector [0:5:200] | ||
### for( i = [start : increment : end ] ) | |||
#Personal design | #Personal design | ||
##Design on paper | ##Design on paper | ||
#Print? | #Print? | ||
==Very Useful== | |||
http://en.wikibooks.org/wiki/OpenSCAD_User_Manual |
Latest revision as of 17:00, 4 August 2012
Agenda
- Basics
- Names
- Functions:
- difference()
- sphere()
- parameters
- Goes in the ()
- Input for function
- vectors
- [ x, y, z ]
- trees
something(){ more(){ etc(); } }
- Read a design
- Debugging
- ! only this
- # highlight
- * ignore
- % background
- Debugging
- Reproduce an object easy way
- Lots of translate
- Again with loop
- Use rotate vector [0:5:200]
- for( i = [start : increment : end ] )
- Use rotate vector [0:5:200]
- Personal design
- Design on paper
- Print?