height_cm property

height_cm property

Represents the height of the shape, in unit of centimeters.

Example


if shape.height_cm == 3:
    shape.height_cm = 1.0

Definition:

@property
def height_cm(self):
    ...
@height_cm.setter
def height_cm(self, value):
    ...

See Also