Added section for proposed language changes for 'V2.0'

git-svn-id: http://svn.clifford.at/openscad/trunk@587 b57f626f-c46c-0410-a088-ec61d464b74c
stl_dim
kintel 2011-01-09 16:08:31 +00:00
parent e0eea53ad5
commit baf19cfdda
1 changed files with 5 additions and 0 deletions

View File

@ -169,6 +169,11 @@ o Grammar
- import_*() -> *_import() (consistent prefix vs. postfix)
- linear_extrude()/rotate_extrude(): Cumbersome names? -> (extrude, revolve, lathe, sweep ?)
IDEAS FOR LANGUAGE CHANGES
--------------------------
o More strict checking of module parameters to make e.g. this fail:
module test(a,b) { a=1; b=2; echo(a,b,c); } test(c=3);
CODE
----