Add edge with two hinges to top edge param and edge descriptions

This commit is contained in:
Florian Festi 2016-06-30 11:12:51 +02:00
parent 79b39fa0c0
commit a032067c5b
2 changed files with 6 additions and 4 deletions

View File

@ -256,7 +256,7 @@ class Boxes:
elif arg == "top_edge":
self.argparser.add_argument(
"--top_edge", action="store",
type=ArgparseEdgeType("ecESi"), choices=list("ecESi"),
type=ArgparseEdgeType("ecESik"), choices=list("ecESik"),
default="e", help="edge type for top edge")
else:
raise ValueError("No default for argument", arg)

View File

@ -19,9 +19,11 @@ import math
import inspect
def getDescriptions():
return {edge.char : edge.description for edge in globals().values()
if inspect.isclass(edge) and issubclass(edge, BaseEdge)
and edge.char}
d = {edge.char : edge.description for edge in globals().values()
if inspect.isclass(edge) and issubclass(edge, BaseEdge)
and edge.char}
d['k'] = "Straight edge with hinge eye (both ends)"
return d
class BoltPolicy(object):
"""Abstract class