| 117 | |
| 118 | |
| 119 | double |
| 120 | GeometricBrickDecorator::evalSignedVol(const Vector &pA, |
| 121 | const Vector &pB, |
| 122 | const Vector &pC, |
| 123 | const Vector &pP) |
| 124 | { |
| 125 | return (1.0/6.0*( |
| 126 | - this->eval3OrderDet(pB, pC, pP) |
| 127 | + this->eval3OrderDet(pA, pC, pP) |
| 128 | - this->eval3OrderDet(pA, pB, pP) |
| 129 | + this->eval3OrderDet(pA, pB, pC) |
| 130 | )); |
| 131 | } |
| 132 | |
| 133 | |
| 134 | double |
no test coverage detected