Changes in src/tesselation.cpp [8f215d:68f03d]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tesselation.cpp
r8f215d r68f03d 21 21 #include "Plane.hpp" 22 22 #include "Exceptions/LinearDependenceException.hpp" 23 #include "Helpers/Assert.hpp"24 23 25 24 class molecule; … … 683 682 } 684 683 685 /**686 * gets the Plane defined by the three triangle Basepoints687 */688 Plane BoundaryTriangleSet::getPlane() const{689 ASSERT(endpoints[0] && endpoints[1] && endpoints[2], "Triangle not fully defined");690 691 return Plane(*endpoints[0]->node->node,692 *endpoints[1]->node->node,693 *endpoints[2]->node->node);694 }695 696 Vector BoundaryTriangleSet::getEndpoint(int i) const{697 ASSERT(i>=0 && i<3,"Index of Endpoint out of Range");698 699 return *endpoints[i]->node->node;700 }701 702 string BoundaryTriangleSet::getEndpointName(int i) const{703 ASSERT(i>=0 && i<3,"Index of Endpoint out of Range");704 705 return endpoints[i]->node->getName();706 }707 708 684 /** output operator for BoundaryTriangleSet. 709 685 * \param &ost output stream … … 712 688 ostream &operator <<(ostream &ost, const BoundaryTriangleSet &a) 713 689 { 714 ost << "[" << a.Nr << "|" << a. getEndpointName(0) << "," << a.getEndpointName(1) << "," << a.getEndpointName(2) << "]";690 ost << "[" << a.Nr << "|" << a.endpoints[0]->node->getName() << "," << a.endpoints[1]->node->getName() << "," << a.endpoints[2]->node->getName() << "]"; 715 691 // ost << "[" << a.Nr << "|" << a.endpoints[0]->node->Name << " at " << *a.endpoints[0]->node->node << "," 716 692 // << a.endpoints[1]->node->Name << " at " << *a.endpoints[1]->node->node << "," << a.endpoints[2]->node->Name << " at " << *a.endpoints[2]->node->node << "]"; … … 1479 1455 CenterVector.Zero(); 1480 1456 for (int i = 0; i < 3; i++) 1481 CenterVector += BTS->getEndpoint(i);1457 CenterVector += (*BTS->endpoints[i]->node->node); 1482 1458 CenterVector.Scale(1. / 3.); 1483 1459 DoLog(2) && (Log() << Verbose(2) << "CenterVector of base triangle is " << CenterVector << endl); … … 4826 4802 if (LastTriangle != NULL) { 4827 4803 stringstream sstr; 4828 sstr << "-"<< TrianglesOnBoundary.size() << "-" << LastTriangle-> getEndpointName(0) << "_" << LastTriangle->getEndpointName(1) << "_" << LastTriangle->getEndpointName(2);4804 sstr << "-"<< TrianglesOnBoundary.size() << "-" << LastTriangle->endpoints[0]->node->getName() << "_" << LastTriangle->endpoints[1]->node->getName() << "_" << LastTriangle->endpoints[2]->node->getName(); 4829 4805 NumberName = sstr.str(); 4830 4806 if (DoTecplotOutput) {
Note:
See TracChangeset
for help on using the changeset viewer.