Registry / data / geode-simplex

geode-simplex

JSON →
library11.3.1pypypi✓ verified 89d ago

Geode-Simplex is a module of the OpenGeode framework by Geode-solutions, providing simplex (triangular/tetrahedral) remeshing algorithms for 3D mesh models. Version 11.1.5 requires Python 3.9-3.12. Released approximately every 2-3 months.

pip install geode-simplex
INSTALL
IMPORT
SIG · GEODE-SIMPLEX
G
geode-simplex
datapythonv11.3.1
Install
4.0s avg
Import
—
Disk
127MB
Pass rate
5/ 10
Env Coverage5 / 10
glibc
3.9–3.13
musl
3.9–3.13
Install & Compatibility
Where this runs
tested against v11.3.1 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.10–3.95 runs
build_error
glibc
py 3.10–3.95 runs
installs and imports cleanly · install 4.0s · import 0.000s · 130MB
127MB installed
● package 127MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

GeodeSimplexBRepLibrary
✓ from geode_simplex import GeodeSimplexBRepLibrary
✗ from geode_simplex import SimplexRemesher
GeodeSimplexMetricLibrary
✓ from geode_simplex import GeodeSimplexMetricLibrary
GeodeSimplexSectionLibrary
✓ from geode_simplex import GeodeSimplexSectionLibrary

Basic example: load a tetrahedral mesh, set target edge length, remesh, and save.

from geode_simplex import SimplexRemesher import opengeode # Load a tetrahedral mesh mesh = opengeode.load_mesh('input.mesh') # Initialize remesher remesher = SimplexRemesher(mesh) remesher.set_target_edge_length(0.5) # Perform remeshing new_mesh = remesher.remesh() opengeode.save_mesh(new_mesh, 'output.mesh')
Debug
Known issues
gotchaImport path uses underscore: import from geode_simplex NOT geode.simplex. Many users mistakenly use dots due to the package name containing a hyphen.
fix
Use 'from geode_simplex import SimplexRemesher'.
affects: all
deprecatedPython 3.8 and below are not supported. Requires Python >=3.9.
fix
Upgrade Python to 3.9 or later.
affects: >=11.0.0
gotchaThe remeshing algorithm expects a triangle or tetrahedral mesh. Passing other mesh types will raise an error without clear message.
fix
Ensure your mesh is simplex (triangular/tetrahedral) using opengeode mesh conversion utilities.
affects: all
Upgrade
Version history
11.3.1latest on PyPI · released Jun 18, 2026
Audit
Dependencies
opengeode-corerequiredProvides underlying geometry and mesh data structures required by geode-simplex.
Agent activity
4 hits · last 30 days
node
4
Resources
geode-simplex — pip install geode-simplex · libregistry