{"library":"opengeode-core","title":"OpenGeode-core","description":"OpenGeode is an open-source C++/Python framework for representing and manipulating geometric models, with a focus on mesh and boundary representation. Current version 16.5.1, active development with quarterly releases. Provides high-performance data structures and algorithms for geometric modeling.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install opengeode-core"],"cli":null},"imports":["import opengeode"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import opengeode\n\n# Create a 3D mesh\nmesh = opengeode.TetrahedralSolid3D()\nmesh.set_vertices([\n    (0,0,0),\n    (1,0,0),\n    (0,1,0),\n    (0,0,1)\n])\nmesh.add_tetrahedron([0,1,2,3])\nprint(f\"Vertices: {mesh.nb_vertices()}\")\nprint(f\"Tetrahedra: {mesh.nb_tetrahedra()}\")","lang":"python","description":"Create a 3D tetrahedral mesh with one tetrahedron.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}