diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-05 16:04:09 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-05 16:04:09 (GMT) |
commit | 5466efe7ef89bb2e9925f8fccd6c752e3475bd93 (patch) | |
tree | 9fcec9fe4dcfce54764dc448e56744aaf7425bd9 /src/openscad.cc | |
parent | 04bc3ed890451de881034fee9f000761c4f0e068 (diff) |
bugfix: PI constant didn't work in cmd-line mode. refactored away duplicate code
Diffstat (limited to 'src/openscad.cc')
-rw-r--r-- | src/openscad.cc | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/openscad.cc b/src/openscad.cc index 9b45d21..84d6263 100644 --- a/src/openscad.cc +++ b/src/openscad.cc @@ -260,21 +260,7 @@ int main(int argc, char **argv) #ifdef ENABLE_CGAL Context root_ctx; - root_ctx.functions_p = &builtin_functions; - root_ctx.modules_p = &builtin_modules; - root_ctx.set_variable("$fn", Value(0.0)); - root_ctx.set_variable("$fs", Value(1.0)); - root_ctx.set_variable("$fa", Value(12.0)); - root_ctx.set_variable("$t", Value(0.0)); - - Value zero3; - zero3.type = Value::VECTOR; - zero3.append(new Value(0.0)); - zero3.append(new Value(0.0)); - zero3.append(new Value(0.0)); - root_ctx.set_variable("$vpt", zero3); - root_ctx.set_variable("$vpr", zero3); - + register_builtin(root_ctx); AbstractModule *root_module; ModuleInstantiation root_inst; |