width_cm属性
width_cm属性
表示形状的宽度,单位为厘米。
例子
if shape.width_cm == 3:
shape.width_cm = 1.0
定义:
@property
def width_cm(self):
...
@width_cm.setter
def width_cm(self, value):
...
表示形状的宽度,单位为厘米。
if shape.width_cm == 3:
shape.width_cm = 1.0
@property
def width_cm(self):
...
@width_cm.setter
def width_cm(self, value):
...