本文整理汇总了Python中kivy.properties.NumericProperty方法的典型用法代码示例。如果您正苦于以下问题:Python properties.NumericProperty方法的具体用法?Python properties.NumericProperty怎么用?Python properties.NumericProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kivy.properties
的用法示例。
在下文中一共展示了properties.NumericProperty方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: add_point_vals
# 需要导入模块: from kivy import properties [as 别名]
# 或者: from kivy.properties import NumericProperty [as 别名]
def add_point_vals(self, x_val, y_val):
# Calculate position of point according to coordinate value
x_pos = round(x_val * self.x_increment)
y_pos = self.graph_height - round(y_val * self.y_increment)
# Create new point
new_point = Point(x_pos, y_pos, x_val, y_val)
# new_point.x_pos = NumericProperty(x_pos)
# new_point.y_pos = NumericProperty(y_pos)
# new_point.x_value = x_val
# new_point.y_value = y_val
# Add point
self.add_point(new_point)