Merge branch 'util/material' into touhou/houjuu-nue
This commit is contained in:
commit
53ef5e454f
|
@ -8,7 +8,25 @@ def _color(name: str, alpha: float) -> Cq.Color:
|
||||||
r, g, b, _ = Cq.Color(name).toTuple()
|
r, g, b, _ = Cq.Color(name).toTuple()
|
||||||
return Cq.Color(r, g, b, alpha)
|
return Cq.Color(r, g, b, alpha)
|
||||||
|
|
||||||
|
class Role(Enum):
|
||||||
|
"""
|
||||||
|
Describes the role of a part
|
||||||
|
"""
|
||||||
|
|
||||||
|
# Parent and child components in a load bearing joint
|
||||||
|
PARENT = _color('blue4', 0.6)
|
||||||
|
CHILD = _color('darkorange2', 0.6)
|
||||||
|
STRUCTURE = _color('gray', 0.4)
|
||||||
|
DECORATION = _color('lightseagreen', 0.4)
|
||||||
|
ELECTRONIC = _color('mediumorchid', 0.5)
|
||||||
|
|
||||||
|
def __init__(self, color: Cq.Color):
|
||||||
|
self.color = color
|
||||||
|
|
||||||
class Material(Enum):
|
class Material(Enum):
|
||||||
|
"""
|
||||||
|
A catalog of common material properties
|
||||||
|
"""
|
||||||
|
|
||||||
WOOD_BIRCH = 0.8, _color('bisque', 0.9)
|
WOOD_BIRCH = 0.8, _color('bisque', 0.9)
|
||||||
PLASTIC_PLA = 0.5, _color('azure3', 0.6)
|
PLASTIC_PLA = 0.5, _color('azure3', 0.6)
|
||||||
|
|
Loading…
Reference in New Issue