@@ -51,10 +51,10 @@ def draw(self, vertices=None, edges=None, faces=None, vertexcolor=None, edgecolo
5151 A selection of faces to draw.
5252 The default is ``None``, in which case all faces are drawn.
5353 vertexcolor : tuple or dict of tuple, optional
54- The color specififcation for the vertices.
54+ The color specification for the vertices.
5555 The default color is the value of ``~MeshArtist.default_vertexcolor``.
5656 edgecolor : tuple or dict of tuple, optional
57- The color specififcation for the edges.
57+ The color specification for the edges.
5858 The default color is the value of ``~MeshArtist.default_edgecolor``.
5959 facecolor : tuple or dict of tuple, optional
6060 The color specification for the faces.
@@ -68,7 +68,7 @@ def draw(self, vertices=None, edges=None, faces=None, vertexcolor=None, edgecolo
6868
6969 Returns
7070 -------
71- :class:`Rhino.Geometry.Mesh`
71+ list of :class:`Rhino.Geometry.Mesh`, :class:`Rhino.Geometry.Point3d` and :class:`Rhino.Geometry.Line` depending on the selection.
7272 """
7373 geometry = []
7474 if self .show_mesh :
@@ -114,7 +114,7 @@ def draw_vertices(self, vertices=None, color=None):
114114 A selection of vertices to draw.
115115 Default is ``None``, in which case all vertices are drawn.
116116 color : tuple or dict of tuple, optional
117- The color specififcation for the vertices.
117+ The color specification for the vertices.
118118 The default is the value of ``~MeshArtist.default_vertexcolor``.
119119
120120 Returns
@@ -143,7 +143,7 @@ def draw_faces(self, faces=None, color=None, join_faces=False):
143143 A selection of faces to draw.
144144 The default is ``None``, in which case all faces are drawn.
145145 color : tuple or dict of tuple, optional
146- The color specififcation for the faces.
146+ The color specification for the faces.
147147 The default color is the value of ``~MeshArtist.default_facecolor``.
148148 join_faces : bool, optional
149149 Join the faces into 1 mesh.
@@ -181,7 +181,7 @@ def draw_edges(self, edges=None, color=None):
181181 A selection of edges to draw.
182182 The default is ``None``, in which case all edges are drawn.
183183 color : tuple or dict of tuple, optional
184- The color specififcation for the edges.
184+ The color specification for the edges.
185185 The default color is the value of ``~MeshArtist.default_edgecolor``.
186186
187187 Returns
0 commit comments