WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
GeomBox.h
1#ifndef _WINC_GEOMBOX
2#define _WINC_GEOMBOX
3
4namespace WXP {
5 class GeomBox {
6 public:
7 float x;
8 float y;
9 float width;
10 float height;
12 int init();
13 GeomBox();
14 GeomBox( float rx, float ry, float rwidth, float rheight );
15 int set( float rx, float ry, float rwidth, float rheight );
16 int print();
17 };
18}
19#endif
This structure sets size and location of a geometric box.
Definition: GeomBox.h:5
int print()
Definition: GeomBox.cc:61
float x
Definition: GeomBox.h:7
float width
Definition: GeomBox.h:9
float y
Definition: GeomBox.h:8
int init()
Definition: GeomBox.cc:17
float height
Definition: GeomBox.h:10
int set(float rx, float ry, float rwidth, float rheight)
Definition: GeomBox.cc:50
GeomBox()
Definition: GeomBox.cc:28
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4