Skip to content

Commit

Permalink
📝 Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
je-cook committed Oct 10, 2024
1 parent e59743f commit d10963b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bluemira/codes/_freecadapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2520,7 +2520,7 @@ def face_from_plane(plane: apiPlane, width: float, height: float) -> apiFace:
Note
----
Face is centered on the Plane Position. With respect to the global coordinate
Face is centred on the Plane Position. With respect to the global coordinate
system, the face placement is given by a simple rotation of the z axis.
Parameters
Expand Down Expand Up @@ -2591,15 +2591,15 @@ def collect_verts_faces(
solid: apiShape, tesselation: float = 0.1
) -> tuple[np.ndarray | None, ...]:
"""
Collects verticies and faces of parts and tessellates them
Collects vertices and faces of parts and tessellates them
for the CAD viewer
Parameters
----------
solid:
FreeCAD Part
tesselation:
amount of tesselation for the mesh
tessellation:
amount of tessellation for the mesh
Returns
-------
Expand All @@ -2614,7 +2614,7 @@ def collect_verts_faces(

# collect
for face in solid.Faces:
# tesselation is likely to be the most expensive part of this
# tessellation is likely to be the most expensive part of this
v, f = face.tessellate(tesselation)

if v != []:
Expand All @@ -2630,7 +2630,7 @@ def collect_verts_faces(

def collect_wires(solid: apiShape, **kwds) -> tuple[np.ndarray, np.ndarray]:
"""
Collects verticies and edges of parts and discretises them
Collects vertices and edges of parts and discretises them
for the CAD viewer
Parameters
Expand Down

0 comments on commit d10963b

Please sign in to comment.