Skip to content

Commit 6b3c7f9

Browse files
committed
docstring
1 parent 8cb89f9 commit 6b3c7f9

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

src/compas_rhino/geometry/brep/edge.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ class RhinoBrepEdge(BrepEdge):
4949
True if the geometry of this edge is a line, False otherwise.
5050
native_edge : :class:`Rhino.Geometry.BrepEdge`
5151
The underlying BrepEdge object.
52+
domain : tuple
53+
The domain of the edge.
54+
index : int
55+
The index of the edge.
5256
5357
"""
5458

src/compas_rhino/geometry/brep/trim.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ class RhinoBrepTrim(BrepTrim):
3030
The end vertex of this trim.
3131
vertices : list[:class:`compas_rhino.geometry.RhinoBrepVertex`], read-only
3232
The list of vertices which comprise this trim (start and end).
33-
33+
edge : :class:compas_rhino.geometry.RhinoBrepEdge
34+
The edge associated with this trim.
3435
"""
3536

3637
def __init__(self, rhino_trim=None):

src/compas_rhino/geometry/brep/vertex.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ class RhinoBrepVertex(BrepVertex):
1616
The underlying Rhino BrepBertex object.
1717
point : :class:`compas.geometry.Point`, read-only
1818
The geometry of this vertex as a point in 3D space.
19+
index : int
20+
The index of the vertex.
1921
2022
"""
2123

0 commit comments

Comments
 (0)