MeshKit  1.0
AF2Edge2D.cpp
Go to the documentation of this file.
00001 #include "meshkit/AF2Edge2D.hpp"
00002 
00003 AF2Edge2D::AF2Edge2D(const AF2Point2D* start, const AF2Point2D* end) :
00004     startPnt(start), endPnt(end)
00005 {
00006   // no work to do beyond the member initializers
00007 }
00008 
00009 const AF2Point2D* AF2Edge2D::getStart() const
00010 {
00011   return startPnt;
00012 }
00013 
00014 const AF2Point2D* AF2Edge2D::getEnd() const
00015 {
00016   return endPnt;
00017 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines