diff options
author | Marius Kintel <marius@kintel.net> | 2014-02-04 03:53:57 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2014-02-04 03:53:57 (GMT) |
commit | 23023bfaf415a2676c2df9adac691bae4cae33f0 (patch) | |
tree | f5db00ce8c4690b6833d6557f684351eeafe4032 | |
parent | c4e41d76e1c320c252c27dc1ba916188de08e23c (diff) | |
parent | 042f8c4d65ff4f27917579c8293aa092efe9d35b (diff) |
Merge branch 'master' of github.com:openscad/openscad
-rw-r--r-- | src/primitives.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/primitives.cc b/src/primitives.cc index c9e1072..029f7df 100644 --- a/src/primitives.cc +++ b/src/primitives.cc @@ -161,7 +161,7 @@ AbstractNode *PrimitiveModule::instantiate(const Context *ctx, const ModuleInsta args += Assignment("h", NULL), Assignment("r1", NULL), Assignment("r2", NULL), Assignment("center", NULL); break; case POLYHEDRON: - args += Assignment("points", NULL), Assignment("triangles", NULL), Assignment("convexity", NULL), Assignment("faces", NULL); + args += Assignment("points", NULL), Assignment("faces", NULL), Assignment("convexity", NULL); break; case SQUARE: args += Assignment("size", NULL), Assignment("center", NULL); |