00001 #pragma ident "$Id: StrokeStyle.cpp 1644 2009-01-27 19:26:14Z ckiesch $" 00002 00004 00005 //============================================================================ 00006 // 00007 // This file is part of GPSTk, the GPS Toolkit. 00008 // 00009 // The GPSTk is free software; you can redistribute it and/or modify 00010 // it under the terms of the GNU Lesser General Public License as published 00011 // by the Free Software Foundation; either version 2.1 of the License, or 00012 // any later version. 00013 // 00014 // The GPSTk is distributed in the hope that it will be useful, 00015 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 // GNU Lesser General Public License for more details. 00018 // 00019 // You should have received a copy of the GNU Lesser General Public 00020 // License along with GPSTk; if not, write to the Free Software Foundation, 00021 // Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 // 00023 // Copyright 2004, The University of Texas at Austin 00024 // 00025 //============================================================================ 00026 00027 #include "StrokeStyle.hpp" 00028 00029 namespace vdraw 00030 { 00031 00032 StrokeStyle::StrokeStyle(void): 00033 color(Color::BLACK), width(1), solid(true) 00034 { 00035 } 00036 00037 StrokeStyle::StrokeStyle( const Color& icolor, 00038 double iwidth) : 00039 color(icolor), width(iwidth), solid(true) 00040 { 00041 } 00042 00043 StrokeStyle::StrokeStyle( const Color& icolor, 00044 double iwidth, 00045 const dashLengthList& dll) : 00046 color(icolor), width(iwidth) 00047 { 00048 solid = true; 00049 if(dll.size() != 0) 00050 { 00051 solid = false; 00052 dashList = dll; 00053 } 00054 } 00055 00056 } // namespace vdraw 00057
1.3.9.1