File: visitor-changes.txt

package info (click to toggle)
openscad 2015.03-2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 30,804 kB
  • ctags: 5,692
  • sloc: cpp: 39,386; sh: 3,856; ansic: 3,674; python: 1,393; yacc: 496; lex: 272; lisp: 159; makefile: 67; xml: 60
file content (7 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
Changes in visitor branch:
o import_dxf(): layername="" imports all layers. Importing a single layer with a zero-length name is no longer supported. FIXME: The same prob. goes for dims
o cylinder(): the r parameter will now always be used in place of a missing r1 or r2
o for():
  - with scalar argument now works, e.g.: for (i=23) echo(i)
  - empty for loop is not evaluated, e.g. for () echo(i) 
  - for loop with illegal value is not evaluated, e.g. for ([0:true:2])