78 bool shapedLatticePentRod::isInterior(
Vector3d point) {
79 RealType x, y, z, new_x, new_y, left_newx, right_newx;
91 new_x = (sqrt(2.0) / 2) * (x - y);
92 new_y = (sqrt(2.0) / 2) * (x + y);
94 left_newx = (z - 1.44) * (0.577350269 / 0.816496581);
95 right_newx = (z + 1.44) * (-0.577350269 / 0.816496581);
109 if ((z < 0) && (z >= -0.816496581 * rodRadius_ - 1.44)) {
111 1.44 * (z / 2.04) + 0.5 * rodLength_ + 0.5773502692 * rodRadius_) {
112 if ((new_x >= left_newx) && (new_x <= right_newx)) { isIT =
true; }