We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5da9f1 commit 946171bCopy full SHA for 946171b
src/gsMaterialMatrixBase_.cpp
@@ -39,6 +39,22 @@ namespace gismo
39
;
40
}
41
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
53
+ using Class = gsMaterialMatrixBaseDim<3,real_t>;
54
+ py::class_<Class,Base>(m, "gsMaterialMatrixBaseDim3")
55
56
57
58
#endif
59
60
0 commit comments