Skip to content

Commit 946171b

Browse files
committed
undo last commit
1 parent b5da9f1 commit 946171b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/gsMaterialMatrixBase_.cpp

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,22 @@ namespace gismo
3939
;
4040
}
4141

42+
void pybind11_init_gsMaterialMatrixBaseDim2(py::module &m)
43+
{
44+
using Base = gsMaterialMatrixBase<real_t>;
45+
using Class = gsMaterialMatrixBaseDim<2,real_t>;
46+
py::class_<Class,Base>(m, "gsMaterialMatrixBaseDim2")
47+
;
48+
}
49+
50+
void pybind11_init_gsMaterialMatrixBaseDim3(py::module &m)
51+
{
52+
using Base = gsMaterialMatrixBase<real_t>;
53+
using Class = gsMaterialMatrixBaseDim<3,real_t>;
54+
py::class_<Class,Base>(m, "gsMaterialMatrixBaseDim3")
55+
;
56+
}
57+
4258
#endif
4359

4460
}

0 commit comments

Comments
 (0)