feat: render open and closed faces/lines

This commit is contained in:
parker
2025-08-04 13:47:08 +01:00
parent c685e4b9bd
commit 05a2284773
11 changed files with 117 additions and 66 deletions

View File

@@ -24,7 +24,7 @@ TEST_CASE("geometry")
using namespace enzo;
geo::Geometry geo;
// check add function
ga::AttributeHandle<int> myHandle = geo.addIntAttribute(ga::AttrOwner::POINT, "index");
ga::AttributeHandleInt myHandle = geo.addIntAttribute(ga::AttrOwner::POINT, "index");
myHandle.addValue(5);
myHandle.addValue(6);
REQUIRE(myHandle.getValue(0)==5);