本文整理汇总了Python中Path.Path.length方法的典型用法代码示例。如果您正苦于以下问题:Python Path.length方法的具体用法?Python Path.length怎么用?Python Path.length使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Path.Path
的用法示例。
在下文中一共展示了Path.length方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testLength
# 需要导入模块: from Path import Path [as 别名]
# 或者: from Path.Path import length [as 别名]
def testLength(self):
p = Path()
p.addPoint(self.p0)
p.addPoint(self.p1)
l0 = Line(self.p0, self.p1)
l1 = Line(self.p1, self.p2)
self.assertEquals(p.length(), l0.length())
p.addPoint(self.p2)
self.assertEquals(p.length(), l0.length() + l1.length())
示例2: testEmpty
# 需要导入模块: from Path import Path [as 别名]
# 或者: from Path.Path import length [as 别名]
def testEmpty(self):
emptyPath = Path()
self.assertFalse(emptyPath.isConnected())
self.assertEquals(emptyPath.length(), 0)