| 461 | |
| 462 | template<> template <typename Tx, typename TFA> |
| 463 | void NormalFacetFacetFE<ET_SEGM>::T_CalcShape(TIP<DIM,Tx> tip, |
| 464 | TFA & shape) const |
| 465 | { |
| 466 | |
| 467 | Tx x = tip.x; |
| 468 | if ( vnums[0] > vnums[1]) x = 1-x; |
| 469 | Tx sx = 2*x-1; |
| 470 | LegendrePolynomial (order_inner[0], sx, |
| 471 | SBLambda([&] (size_t i, Tx val) |
| 472 | { |
| 473 | shape[i] = uDv(val, sx); |
| 474 | })); |
| 475 | } |
| 476 | |
| 477 | template<> |
| 478 | void NormalFacetFacetFE<ET_SEGM>::ComputeNDof() |
no test coverage detected