コード例 #1
0
 def __init__(self,
              w: int = None,
              d: int = None,
              h: int = None,
              typeName=None):
     Dimension.__init__(self, w, d, h)
     self.boxType = typeName
コード例 #2
0
 def __init__(self,w: int=None, d: int=None, h: int=None, x: int=None, y: int=None, z: int=None):
     Dimension.__init__(self, w, d, h)
     Coordinate.__init__(self, x, y, z)