Skip to content

Commit

Permalink
undo last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
filiatra committed Jan 5, 2025
1 parent b5da9f1 commit 946171b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/gsMaterialMatrixBase_.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,22 @@ namespace gismo
;
}

void pybind11_init_gsMaterialMatrixBaseDim2(py::module &m)
{
using Base = gsMaterialMatrixBase<real_t>;
using Class = gsMaterialMatrixBaseDim<2,real_t>;
py::class_<Class,Base>(m, "gsMaterialMatrixBaseDim2")
;
}

void pybind11_init_gsMaterialMatrixBaseDim3(py::module &m)
{
using Base = gsMaterialMatrixBase<real_t>;
using Class = gsMaterialMatrixBaseDim<3,real_t>;
py::class_<Class,Base>(m, "gsMaterialMatrixBaseDim3")
;
}

#endif

}
Expand Down

0 comments on commit 946171b

Please sign in to comment.