amaazetools 0.1.7__tar.gz → 0.1.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {amaazetools-0.1.7/amaazetools.egg-info → amaazetools-0.1.8}/PKG-INFO +1 -1
- {amaazetools-0.1.7 → amaazetools-0.1.8}/amaazetools/trimesh.py +1 -1
- {amaazetools-0.1.7 → amaazetools-0.1.8/amaazetools.egg-info}/PKG-INFO +1 -1
- {amaazetools-0.1.7 → amaazetools-0.1.8}/pyproject.toml +1 -1
- {amaazetools-0.1.7 → amaazetools-0.1.8}/LICENSE +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/MANIFEST.in +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/README.md +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/amaazetools/__init__.py +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/amaazetools/dicom.py +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/amaazetools/edge_detection.py +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/amaazetools/mesh_segmentation.py +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/amaazetools/svi.py +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/amaazetools.egg-info/SOURCES.txt +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/amaazetools.egg-info/dependency_links.txt +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/amaazetools.egg-info/requires.txt +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/amaazetools.egg-info/top_level.txt +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/setup.cfg +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/setup.py +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/src/cextensions.c +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/src/memory_allocation.c +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/src/memory_allocation.h +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/src/mesh_operations.c +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/src/mesh_operations.h +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/src/svi_computations.c +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/src/svi_computations.h +0 -0
- {amaazetools-0.1.7 → amaazetools-0.1.8}/src/vector_operations.h +0 -0
|
@@ -582,7 +582,7 @@ class mesh:
|
|
|
582
582
|
newtri = newtri[ np.sum(newtri<0,1) ==0, :]
|
|
583
583
|
|
|
584
584
|
newpts = pts[pt_ind2keep,:]
|
|
585
|
-
return newpts, newtri
|
|
585
|
+
return mesh(newpts, newtri)
|
|
586
586
|
|
|
587
587
|
#Returns unit normal vectors to vertices (averaging adjacent faces and normalizing)
|
|
588
588
|
def vertex_normals(self):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|