Loading Unstructured_mesh/Unstructured_mesh.pro.user +1 −1 Original line number Diff line number Diff line <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE QtCreatorProject> <!-- Written by QtCreator 4.10.0, 2019-09-27T11:56:39. --> <!-- Written by QtCreator 4.10.0, 2019-09-27T19:25:22. --> <qtcreator> <data> <variable>EnvironmentId</variable> Loading Unstructured_mesh/mesh_element.h +7 −8 Original line number Diff line number Diff line Loading @@ -13,30 +13,29 @@ template<typename IndexType> class MeshElementBase{ /** * @brief Index * * @brief elementIndex<HR> * Index of the element in the mesh or in mesh component */ IndexType ElementIndex; IndexType elementIndex; /** * @brief LocalElementIndex * @brief globalElementIndex * * Global index of element in the mesh component */ //IndexType GobalElementIndex; //IndexType gobalElementIndex; public: MeshElementBase(IndexType index = INVALID_INDEX(IndexType)){ ElementIndex = index; elementIndex = index; } IndexType GetIndex(){ return ElementIndex; return elementIndex; } void SetIndex(IndexType index){ ElementIndex = index; elementIndex = index; } /* IndexType GetGlobalIndex(){ Loading Loading
Unstructured_mesh/Unstructured_mesh.pro.user +1 −1 Original line number Diff line number Diff line <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE QtCreatorProject> <!-- Written by QtCreator 4.10.0, 2019-09-27T11:56:39. --> <!-- Written by QtCreator 4.10.0, 2019-09-27T19:25:22. --> <qtcreator> <data> <variable>EnvironmentId</variable> Loading
Unstructured_mesh/mesh_element.h +7 −8 Original line number Diff line number Diff line Loading @@ -13,30 +13,29 @@ template<typename IndexType> class MeshElementBase{ /** * @brief Index * * @brief elementIndex<HR> * Index of the element in the mesh or in mesh component */ IndexType ElementIndex; IndexType elementIndex; /** * @brief LocalElementIndex * @brief globalElementIndex * * Global index of element in the mesh component */ //IndexType GobalElementIndex; //IndexType gobalElementIndex; public: MeshElementBase(IndexType index = INVALID_INDEX(IndexType)){ ElementIndex = index; elementIndex = index; } IndexType GetIndex(){ return ElementIndex; return elementIndex; } void SetIndex(IndexType index){ ElementIndex = index; elementIndex = index; } /* IndexType GetGlobalIndex(){ Loading