当前位置: 首页>>代码示例>>Python>>正文


Python properties.NumericProperty方法代码示例

本文整理汇总了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) 
开发者ID:neurotechuoft,项目名称:Wall-EEG,代码行数:16,代码来源:PointsCollection.py


注:本文中的kivy.properties.NumericProperty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。