diff --git a/Applications/DataExplorer/DataView/MeshLayerEditDialog.cpp b/Applications/DataExplorer/DataView/MeshLayerEditDialog.cpp index 1a4e49badb210ffe30a3176b9b7981f4f6056b5c..ed19652f2c5c5c20c9d65d33ec4a1657cbb4fb10 100644 --- a/Applications/DataExplorer/DataView/MeshLayerEditDialog.cpp +++ b/Applications/DataExplorer/DataView/MeshLayerEditDialog.cpp @@ -237,7 +237,7 @@ MeshLib::Mesh* MeshLayerEditDialog::createTetMesh() if (tg_mesh) { - std::vector<MeshLib::Node> tg_attr (lv.getConfigAttributePoints()); + std::vector<MeshLib::Node> tg_attr (lv.getAttributePoints()); FileIO::TetGenInterface tetgen_interface; tetgen_interface.writeTetGenSmesh(filename.toStdString(), *tg_mesh, tg_attr); } diff --git a/MeshLib/MeshGenerators/LayeredVolume.h b/MeshLib/MeshGenerators/LayeredVolume.h index 1e58344e844af0ee719547db5e5986a412c482e1..fb0bd1b280c31f67efdca9f2ec6f4b08332dd217 100644 --- a/MeshLib/MeshGenerators/LayeredVolume.h +++ b/MeshLib/MeshGenerators/LayeredVolume.h @@ -49,7 +49,7 @@ public: double noDataReplacementValue = 0.0); /// Returns the region attribute vector necessary for assigning region attributes via TetGen - std::vector<MeshLib::Node> getConfigAttributePoints() { return _attribute_points; } + std::vector<MeshLib::Node> getAttributePoints() { return _attribute_points; } private: /// Adds another layer to the subsurface mesh