Skip to content

Commit 59e5f69

Browse files
committed
codespell
1 parent a734b85 commit 59e5f69

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/test_extrude.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def test_extrude_mid_plane():
8585
polygon=Point([0, 0]).buffer(1.0), height=10.0, transform=tf, mid_plane=True
8686
)
8787

88-
# the mesh center of mass should be independant
88+
# the mesh center of mass should be independent
8989
# of rotation and exactly at the translation
9090
center = m.to_mesh().center_mass
9191
translate = tf[:3, 3]

tests/test_inertia.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ def test_points_inertia_sample():
480480
# check to see that randomly sampled volume of a box
481481
# moved somewhere in space is "about equal" with the
482482
# approximate inertia of the points compared to the
483-
# exact intertia tensor of the box primitive
483+
# exact inertia tensor of the box primitive
484484

485485
# start with a random but deterministic rotation matrix
486486
matrix = g.np.array(

tests/test_obj.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ def test_material_name():
547547
m.export(file_obj=path)
548548
roundtrip = g.trimesh.load_mesh(file_obj=path)
549549

550-
# material name should have survivied
550+
# material name should have survived
551551
assert roundtrip.visual.material.name == "a-super-duper-material"
552552

553553
g.check_fuze(roundtrip)

trimesh/exchange/ply.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def _elements_to_kwargs(elements, fix_texture, image, prefer_color=None):
730730
edges = edge_data
731731
else:
732732
# we could also check `edge_data.dtype.kind in 'OV'`
733-
# but its not clear that that handles all the possiblities
733+
# but its not clear that that handles all the possibilities
734734
edges = structured_to_unstructured(edge_data)
735735

736736
if edges is not None:

0 commit comments

Comments
 (0)