00001 #ifndef _WINC_WINDPLOT
00002 #define _WINC_WINDPLOT
00003
00004 #include <WXP/Plot.h>
00005 #include <WXP/Point.h>
00006 #include <WXP/Wind.h>
00007
00008 namespace WXP {
00009 class WindPlot {
00010 public:
00011 static int drawBarbMap( Plot &plot, Point &pt, Wind &wnd, float size, float offset );
00012 static int drawBarb( Plot &plot, Point &pt, Wind &wnd, float size, float offset );
00013 static int drawVectMap( Plot &plot, Point &pt, Wind &wnd, float size, float arrow );
00014 static int drawVect( Plot &plot, Point &pt, Wind &wnd, float size, float arrow );
00015 static int drawTrack( Plot &plot, Point &pt, Wind &wnd, float scale, float arrow, int maj, int min );
00016 };
00017 }
00018 #endif