No description
Find a file
Sei Lisa 2cbed52bf7 Add optimization of declarations.
integer a = 0; -> integer a;
float f; -> float f = 0;
vector v; -> vector v = <0,0,0>;
rotation r -> rotation r = <0,0,0,1>;
2014-07-31 03:29:21 +02:00
lslopt Add optimization of declarations. 2014-07-31 03:29:21 +02:00
.gitignore Meta - add .gitignore 2014-07-26 03:06:33 +02:00
builtins.txt Add current builtins.txt, which is needed to execute. 2014-07-26 03:13:07 +02:00
builtins.txt.dat Add the unit testing files. 2014-07-26 03:18:02 +02:00
main.py Clean up the help a bit, removing unimplemented options. 2014-07-31 02:02:53 +02:00
testfuncs.py Thorough review of lslbasefuncs and associated files, adding new stuff. 2014-07-26 20:54:01 +02:00
testparser.py Add a bunch of optimizations. Fix || and && results. 2014-07-31 02:53:51 +02:00