00001 /*************************************************************************** 00002 edge.cpp - description 00003 ------------------- 00004 begin : Fri Dec 12 2003 00005 copyright : (C) 2003 by Roman Geus 00006 email : roman.geus@psi.ch 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #include <math.h> 00019 #include "point.h" 00020 #include "edge.h" 00021 00022 namespace mesh { 00023 00024 Edge::Edge(id_t id, id_t start, id_t end) : 00025 Entity(id), _start(start), _end(end) 00026 { 00027 } 00028 00029 } // namespace mesh