File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
src/compas_rhino/geometry/brep Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ):
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments