本文整理汇总了Python中line.Line.__eq__方法的典型用法代码示例。如果您正苦于以下问题:Python Line.__eq__方法的具体用法?Python Line.__eq__怎么用?Python Line.__eq__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类line.Line
的用法示例。
在下文中一共展示了Line.__eq__方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_problems
# 需要导入模块: from line import Line [as 别名]
# 或者: from line.Line import __eq__ [as 别名]
def test_problems(self):
l1 = Line(Vector([4.046, 2.836]), 1.21)
l2 = Line(Vector([10.115, 7.09]), 3.025)
self.assertTrue(l1.__eq__(l2))
self.assertEquals(None, l1.intersection(l2))
l1 = Line(Vector([7.204, 3.182]), 8.68)
l2 = Line(Vector([8.172, 4.114]), 9.883)
self.assertEquals((dec('1.17277663546464155833736023125'), dec('0.0726955116633319428771277112348')),
l1.intersection(l2).coordinates)
self.assertFalse(l1.__eq__(l2))
l1 = Line(Vector([1.182, 5.562]), 6.744)
l2 = Line(Vector([1.773, 8.343]), 9.525)
self.assertEquals(None, l1.intersection(l2))
self.assertFalse(l1.__eq__(l2))