Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-02 | Add concat() function to list of experimental features. | Torsten Paul | |
2013-12-26 | Add concat() builtin (fixes #201). | Torsten Paul | |
This allows to concatenate multiple vectors and single elements into a single result vector. | |||
2013-12-05 | Unicode support for strings | Brody Kenrick | |
Add suport for using unicode strings in .scad files. Support iterating across them/accessing them via [] and searching. -------- Add GLIB (to build for test and normal build -- both with installed and built locally development files). Add support for unicode chars to length and search builtin functions and [] for strings. Added unicode testing functions. Ad GLIB to library info page. | |||
2013-08-18 | Enable module stack introspection from within an SCAD script | Łukasz Stelmach | |
The _current_module and _parent_module variables have been replaced by a built-in function parent_module(n). It takes one numeric parameter n, and returns n-th element from the module stack. If no argument provided, n defaults to 1 and the function returns the name of the direct parent module. If n is equal 0 current module name is returned. | |||
2013-08-11 | fix #452 | Don Bright | |
2013-05-20 | try to refactor the 'is_modified( includefile )' code | Don Bright | |
2013-05-09 | Support lookup tables with one element, final fix of #322 | Marius Kintel | |
2013-05-09 | Update func.cc | NateTG | |
Fix for https://github.com/openscad/openscad/issues/322 | |||
2013-04-26 | Experiment: Lazy evaluation of argument lists in evaluation context. Allows ↵ | Marius Kintel | |
e.g. for loop variables to be dependent on each other | |||
2013-04-24 | Merge branch 'master' into issue116 | Marius Kintel | |
2013-04-19 | Tag search failures as warnings | Marius Kintel | |
2013-04-18 | Cleaned up argument list handling, related to #116 | Marius Kintel | |
2013-04-09 | Refactored context handling into using separate Module contexts and Eval ↵ | Marius Kintel | |
contexts. This allows for recursive module calls, and cascading children. I believe this fixes issue #116 | |||
2013-01-30 | make boost random work with version less than 1.47 | don bright | |
2013-01-06 | remove unneeded frand functions | don bright | |
2013-01-06 | clarify that its not nondeterministic, we are supporting older systems | don bright | |
where the C++/boost random_device stuff doesn't work. boost random_device in particular has a lot of issues with old versions not working, with -lboost_random not being installed by default, etc, that complicate the build too much. | |||
2013-01-06 | also use process ID to seed pseudo random number generator | don bright | |
2013-01-06 | fix typo | don bright | |
2013-01-06 | remove boost::random_device, move min/max out of the random generator loop | don bright | |
2013-01-06 | switch builtin_rands() to use boost::random per issue 234 | don bright | |
2012-10-28 | cleanup | don bright | |
2012-10-28 | refactor, cleanup, put code where it belongs, make simple logging class | don bright | |
2012-10-10 | cosmetics | Marius Kintel | |
2012-03-27 | Rewrote the Value class to be based on boost::variant - this should reduce ↵ | Marius Kintel | |
memory footprint and improve performance | |||
2012-02-18 | Kill warnings | Marius Kintel | |
2012-02-18 | minor fixes: Don't copy input vectors, fixed a leak of a Value object + some ↵ | Marius Kintel | |
cosmetics | |||
2012-02-15 | Added search function | Andrew Plumb | |
Search for characters, strings and integers in a lookup table and return the index (or indices) for matches. | |||
2012-01-08 | bugfix: Infinite loop in deg2rad/rad2deg when giving it an inf number, e.g. ↵ | Marius Kintel | |
1/0. Reported by Triffid Hunter. | |||
2011-11-12 | Added a len() function | Giles Bathgate | |
This returns the number of elements in a vector, and the length of a string. Added a basic test script that can be checked for echo output. | |||
2011-11-09 | Only quote strings when using the stream operator. Fixes #35 | Marius Kintel | |
2011-11-09 | Make old way of specifying version work as well | Marius Kintel | |
2011-11-08 | Fix for dates being interpreted as octal numbers | Marius Kintel | |
2011-11-06 | Slight refactoring of builtin function and module handling | Marius Kintel | |
2011-10-03 | Redefined version() to return the version as a vector. Added version_num() ↵ | Marius Kintel | |
to return a comparable number | |||
2011-09-30 | Cleaned up some unnecessary includes | Marius Kintel | |
2011-09-30 | Added version() function | Marius Kintel | |
2011-09-03 | Some cleanup of the Context class | Marius Kintel | |
2011-09-03 | Ported a bunch of stuff from Qt to STL | Marius Kintel | |
2011-08-12 | fix build errors on windows | don bright | |
2011-04-12 | Ported recent changes to master into the visitor branch | Marius Kintel | |
2011-01-21 | Merge branch 'master' of https://github.com/meta23/openscad | meta | |
Conflicts: openscad.pro | |||
2011-01-21 | Copyright updates | Marius Kintel | |
2011-01-18 | change literal to help choose a proper overload | meta | |
2011-01-18 | add missing include | meta | |
2011-01-17 | add C99 math for win32 | meta | |
2010-12-09 | Ported random function to visitor branch | Marius Kintel | |
2010-12-09 | merged current master | Marius Kintel | |
2010-11-07 | Refactored some QString usage in the backend to std::string | Marius Kintel | |
2010-10-31 | coding style | kintel | |
git-svn-id: http://svn.clifford.at/openscad/trunk@575 b57f626f-c46c-0410-a088-ec61d464b74c | |||
2010-10-31 | Added a rands() function that returns a vector of random numbers. | kintel | |
the function takes either 3 arguments or 4 rands(min,max,num) or rands(min,max,num,seed) git-svn-id: http://svn.clifford.at/openscad/trunk@574 b57f626f-c46c-0410-a088-ec61d464b74c |