@@ -48,7 +48,7 @@ def __init__(self, axis, point1, point2):
4848 Construct an axis aligned line with the appropriate min and max.
4949
5050 :param axis: axis this line is on
51- :type axis: :class:`pygorithm.geometry.Vector2`
51+ :type axis: :class:`pygorithm.geometry.vector2. Vector2`
5252 :param point1: one point on this line
5353 :type point1: :class:`numbers.Number`
5454 :param point2: a different point on this line
@@ -74,9 +74,9 @@ def intersects(line1, line2):
7474 the same operations.
7575
7676 :param line1: the first line
77- :type line1: :class:`pygorithm.geometry.AxisAlignedLine`
77+ :type line1: :class:`pygorithm.geometry.axisall. AxisAlignedLine`
7878 :param line2: the second line
79- :type line2: :class:`pygorithm.geometry.AxisAlignedLine`
79+ :type line2: :class:`pygorithm.geometry.axisall. AxisAlignedLine`
8080 :returns: touching, overlapping
8181 :rtype: bool, bool
8282 """
@@ -101,9 +101,9 @@ def find_intersection(line1, line2):
101101
102102
103103 :param line1: the first line
104- :type line1: :class:`pygorithm.geometry.AxisAlignedLine`
104+ :type line1: :class:`pygorithm.geometry.axisall. AxisAlignedLine`
105105 :param line2: the second line
106- :type line2: :class:`pygorithm.geometry.AxisAlignedLine`
106+ :type line2: :class:`pygorithm.geometry.axisall. AxisAlignedLine`
107107 :returns: touching, mtv against 1
108108 :rtype: bool, :class:`numbers.Number` or None
109109 """
@@ -122,7 +122,7 @@ def contains_point(line, point):
122122 It is not possible for both returned booleans to be `True`.
123123
124124 :param line: the line
125- :type line: :class:`pygorithm.geometry.AxisAlignedLine`
125+ :type line: :class:`pygorithm.geometry.axisall. AxisAlignedLine`
126126 :param point: the point
127127 :type point: :class:`numbers.Number`
128128 :returns: if the point is an edge of the line, if the point is contained by the line
0 commit comments