WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
WindPlot.h
1#ifndef _WINC_WINDPLOT
2#define _WINC_WINDPLOT
3
4#include <WXP/Plot.h>
5#include <WXP/Point.h>
6#include <WXP/Wind.h>
7
8namespace WXP {
9 class WindPlot {
10 public:
11 static int drawBarbMap( Plot &plot, Point &pt, Wind &wnd, float size, float offset );
12 static int drawBarb( Plot &plot, Point &pt, Wind &wnd, float size, float offset );
13 static int drawVectMap( Plot &plot, Point &pt, Wind &wnd, float size, float arrow );
14 static int drawVect( Plot &plot, Point &pt, Wind &wnd, float size, float arrow );
15 static int drawTrack( Plot &plot, Point &pt, Wind &wnd, float scale, float arrow, int maj, int min );
16 };
17}
18#endif
This class defines mid-level graphics commands. Calls the Graph object for actual graphics output.
Definition: Plot.h:26
This class plots wind symbols.
Definition: WindPlot.h:9
static int drawBarbMap(Plot &plot, Point &pt, Wind &wnd, float size, float offset)
Definition: WindPlot.cc:26
static int drawBarb(Plot &plot, Point &pt, Wind &wnd, float size, float offset)
Definition: WindPlot.cc:39
static int drawVect(Plot &plot, Point &pt, Wind &wnd, float size, float arrow)
Definition: WindPlot.cc:159
static int drawVectMap(Plot &plot, Point &pt, Wind &wnd, float size, float arrow)
Definition: WindPlot.cc:146
static int drawTrack(Plot &plot, Point &pt, Wind &wnd, float scale, float arrow, int maj, int min)
Definition: WindPlot.cc:242
This structure defines wind values (dir,spd)
Definition: Wind.h:7
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This struct sets a 3D point (x, y, z)
Definition: Point.h:5