###Vectors - Vectors used for test is video 4: ```python v = Vector([8.218, -9.341]) w = Vector([-1.129, 2.111]) ``` ```python v = Vector([7.119, 8.215]) w = Vector([-8.223, 0.878]) ``` ```python v = Vector([1.671, -1.012, -0.318]) ``` - Vectors used for test is video 6: ```python v = Vector([-0.221, 7.437]) ``` ```python v = Vector([8.813, -1.331, -6.247]) ``` ```python v = Vector([5.581, -2.136]) ``` ```python v = Vector([1.996, 3.108, -4.554]) ``` - Vectors used for test is video 8: ```python v = Vector([7.887, 4.138]) w = Vector([-8.802, 6.776]) ``` ```python v = Vector([-5.955, -4.904, -1.874]) w = Vector([-4.496, -8.755, 7.103]) ``` ```python v = Vector([3.183, -7.627]) w = Vector([-2.668, 5.319]) ``` ```python v = Vector([7.35, 0.221, 5.188]) w = Vector([2.751, 8.259, 3.985]) ``` - Vectors used for test is video 10: ```python v = Vector([-7.579, -7.88]) w = Vector([22.737, 23.64]) ``` ```python v = Vector([-2.029, 9.97, 4.172]) w = Vector([-9.231, -6.639, -7.245]) ``` ```python v = Vector([-2.328, -7.284, -1.214]) w = Vector([-1.821, 1.072, -2.94]) ``` ```python v = Vector([2.118, 4.827]) w = Vector([0, 0]) ``` - Vectors used for test is video 12: ```python v = Vector([3.039, 1.879]) w = Vector([0.825, 2.036]) ``` ```python v = Vector([-9.88, -3.264, -8.159]) w = Vector([-2.155, -9.353, -9.473]) ``` ```python v = Vector([3.009, -6.172, 3.692, -2.51]) w = Vector([6.404, -9.144, 2.759, 8.718]) ``` - Vectors used for test is video 14: ```python v1 = Vector([8.462, 7.893, -8.187]) w1 = Vector([6.984, -5.975, 4.778]) ``` ```python v2 = Vector([-8.987, -9.838, 5.031]) w2 = Vector([-4.268, -1.861, -8.866]) ``` ```python v3 = Vector([1.5, 9.547, 3.691]) w3 = Vector([-6.007, 0.124, 5.772]) ``` ###Intersections - Lines used for test is video 4: ```python line1 = Line(Vector([4.046, 2.836]), 1.21) line2 = Line(Vector([10.115, 7.09]), 3.025) ``` ```python line3 = Line(Vector([7.204, 3.182]), 8.68) line4 = Line(Vector([8.172, 4.114]), 9.883) ``` ```python line5 = Line(Vector([1.182, 5.562]), 6.744) line6 = Line(Vector([1.773, 8.343]), 9.525) ``` - Planes used for test is video 7: ```python plane1 = Plane(Vector([-0.412, 3.806, 0.728]), -3.46) plane2 = Plane(Vector([1.03, -9.515, -1.82]), 8.65) ``` ```python plane3 = Plane(Vector([2.611, 5.528, 0.283]), 4.6) plane4 = Plane(Vector([7.715, 8.306, 5.342]), 3.76) ``` ```python plane5 = Plane(Vector([-7.926, 8.625, -7.212]), -7.952) plane6 = Plane(Vector([-2.642, 2.875, -2.404]), -2.443) ``` - Vectors used for test is video 22: ```python p1 = Plane(Vector([5.862, 1.178, -10.366]), -8.15) p2 = Plane(Vector([-2.931, -0.589, 5.183]), -4.075) ``` ```python p1 = Plane(Vector([8.631, 5.112, -1.816]), -5.113) p2 = Plane(Vector([4.315, 11.132, -5.27]), -6.775) p3 = Plane(Vector([-2.158, 3.01, -1.727]), -0.831) ``` ```python p1 = Plane(Vector([5.262, 2.739, -9.878]), -3.441) p2 = Plane(Vector([5.111, 6.358, 7.638]), -2.152) p3 = Plane(Vector([2.016, -9.924, -1.367]), -9.278) p4 = Plane(Vector([2.167, -13.543, -18.883]), -10.567) ``` - Vectors used for test is video 23: ```python # Note that in the video the second vector is written as: # Vector([-0.138, -0.138, 0.244]), but bellow is the right implementation p1 = Plane(Vector([0.786, 0.786, 0.588]), -0.714) p2 = Plane(Vector([-0.131, -0.131, 0.244]), 0.319) ``` ```python p1 = Plane(Vector([8.631, 5.112, -1.816]), -5.113) p2 = Plane(Vector([4.315, 11.132, -5.27]), -6.775) p3 = Plane(Vector([-2.158, 3.01, -1.727]), -0.831) ``` ```python p1 = Plane(Vector([0.935, 1.76, -9.365]), -9.955) p2 = Plane(Vector([0.187, 0.352, -1.873]), -1.991) p3 = Plane(Vector([0.374, 0.704, -3.746]), -3.982) p4 = Plane(Vector([-0.561, -1.056, 5.619]), 5.973) ```