22 lines
612 B
Python
22 lines
612 B
Python
from FreeCAD import Vector
|
|
import Part
|
|
|
|
import unittest
|
|
|
|
class RegressionTests(unittest.TestCase):
|
|
|
|
def test_issue_4456(self):
|
|
"""
|
|
0004456: Regression : Part.Plane.Intersect do not accept plane as argument
|
|
"""
|
|
p1 = Part.Plane()
|
|
p2 = Part.Plane(Vector(0, 0, 0), Vector(1, 0, 0))
|
|
|
|
result = p1.intersect(p2)
|
|
line = result.pop()
|
|
self.assertEqual(line.Location, Vector(0, 0, 0))
|
|
self.assertEqual(line.Direction, Vector(0, 1, 0))
|
|
# We should now have empty list...
|
|
with self.assertRaises(IndexError):
|
|
result.pop()
|