@@ -34,8 +34,6 @@ class BRepEdge:
3434
3535 Attributes
3636 ----------
37- edge : ``TopoDS_Edge``
38- The underlying OCC topological edge data structure.
3937 type : :class:`BRepEdge.CurveType`, read-only
4038 The type of the geometric curve underlying the topological edge.
4139 is_line : bool, read-only
@@ -54,16 +52,21 @@ class BRepEdge:
5452 True if the underlying curve is a bspline curve.
5553 is_other : bool, read-only
5654 True if the underlying curve is an other type of curve.
57- vertices : list[:class:`compas_occ.brep.BRepVertex`], read-only
55+ vertices : list[:class:`~ compas_occ.brep.BRepVertex`], read-only
5856 The topological vertices of the edge.
59- first_vertex : :class:`compas_occ.brep.BRepVertex`, read-only
57+ first_vertex : :class:`~ compas_occ.brep.BRepVertex`, read-only
6058 The first vertex with forward orientation.
61- last_vertex : :class:`compas_occ.brep.BRepVertex`, read-only
59+ last_vertex : :class:`~ compas_occ.brep.BRepVertex`, read-only
6260 The first vertex with reversed orientation.
61+ curve : :class:`~compas_occ.geometry.Curve`
62+ Curve geometry from the edge adaptor.
63+
64+ Other Attributes
65+ ----------------
66+ edge : ``TopoDS_Edge``
67+ The underlying OCC topological edge data structure.
6368 adaptor : ``BRepAdaptor_Curve``
6469 Edge adaptor for extracting curve geometry.
65- curve : :class:`compas_occ.geometry.OCCCurve`
66- Curve geometry from the edge adaptor.
6770
6871 """
6972
@@ -163,7 +166,7 @@ def to_line(self) -> compas.geometry.Line:
163166
164167 Returns
165168 -------
166- :class:`compas.geometry.Line`
169+ :class:`~ compas.geometry.Line`
167170 A COMPAS line.
168171
169172 Raises
@@ -184,7 +187,7 @@ def to_circle(self) -> compas.geometry.Circle:
184187
185188 Returns
186189 -------
187- :class:`compas.geometry.Circle`
190+ :class:`~ compas.geometry.Circle`
188191 A COMPAS circle.
189192
190193 Raises
@@ -210,7 +213,7 @@ def to_ellipse(self) -> compas.geometry.Ellipse:
210213
211214 Returns
212215 -------
213- :class:`compas.geometry.Ellipse`
216+ :class:`~ compas.geometry.Ellipse`
214217 A COMPAS ellipse.
215218
216219 Raises
@@ -305,7 +308,7 @@ def to_curve(self) -> Curve:
305308
306309 Returns
307310 -------
308- :class:`compas_occ.geometry.Curve`
311+ :class:`~ compas_occ.geometry.Curve`
309312
310313 """
311314 return self .curve
0 commit comments