| 36 | |
| 37 | |
| 38 | virtual void CalcShape (const IntegrationPoint & ip, |
| 39 | BareSliceVector<double> shape) const override |
| 40 | { |
| 41 | Vector<double> allshape(ndof_all); |
| 42 | T_CalcShape (ip(0), ip(1), allshape); |
| 43 | shape = allshape.Range(ndof); |
| 44 | } |
| 45 | |
| 46 | virtual void CalcDShape (const IntegrationPoint & ip, |
| 47 | BareSliceMatrix<> dshape) const override |
no test coverage detected