Branch data Line data Source code
1 : : #include "meshkit/AF2Edge2D.hpp"
2 : :
3 : 3293473 : AF2Edge2D::AF2Edge2D(const AF2Point2D* start, const AF2Point2D* end) :
4 : 3293473 : startPnt(start), endPnt(end)
5 : : {
6 : : // no work to do beyond the member initializers
7 : 3293473 : }
8 : :
9 : 35384930 : const AF2Point2D* AF2Edge2D::getStart() const
10 : : {
11 : 35384930 : return startPnt;
12 : : }
13 : :
14 : 9922377 : const AF2Point2D* AF2Edge2D::getEnd() const
15 : : {
16 : 9922377 : return endPnt;
17 : : }
|