Class Reference for E1039 Core & Analysis Software
PHBBox.h
Go to the documentation of this file.
1 #ifndef __PHBBOX_H__
2 #define __PHBBOX_H__
3 
4 #include <iostream>
5 #include <iomanip>
6 #include <bitset>
7 
8 // Clip a line using the Cohen-Southerland algorithm
9 
10 class PHBBox
11 {
12 public:
13 
15  PHBBox(const double x0, const double y0, const double x1, const double y1) :
16  _x0(x0), _y0(y0), _x1(x1), _y1(y1)
17  {}
18 
21  bool ClipLine(double& x0, double& y0, double& x1, double& y1) const
22  {
23  int clipCode0 = ClipCode(x0,y0); // clipping code for end point 0
24  int clipCode1 = ClipCode(x1,y1); // clipping code for end point 1
25 
26  while ( clipCode0 || clipCode1 )
27  {
28  //std::cout << "clipCode0 = " << std::bitset<4>(clipCode0).to_string() << std::endl;
29  //std::cout << "clipCode1 = " << std::bitset<4>(clipCode1).to_string() << std::endl;
30 
31  if ( clipCode0 & clipCode1 ) return false;
32 
33  int code = 0;
34  if ( clipCode0 > 0 ) code = clipCode0; // clip the first point
35  else code = clipCode1; // clip the last point
36 
37  double x = 0, y = 0;
38 
39  if ( (code & BOTTOM) == BOTTOM )
40  {
41  // Clip the line to the bottom of the box
42  //std::cout << "Clip the line to the bottom of the box" << std::endl;
43  y = _y0;
44  x = x0 + (x1-x0)*(y-y0)/(y1-y0);
45  }
46  else if ( (code & TOP) == TOP )
47  {
48  // Clip the line to the top of the box
49  //std::cout << "Clip the line to the top of the box" << std::endl;
50  y = _y1;
51  x = x0 + (x1-x0)*(y-y0)/(y1-y0);
52  }
53  else if ( (code & LEFT) == LEFT )
54  {
55  //std::cout << "Clip the line to the left of the box" << std::endl;
56  x = _x0;
57  y = y0 + (y1-y0)*(x-x0)/(x1-x0);
58  }
59  else if ( (code & RIGHT) == RIGHT )
60  {
61  //std::cout << "Clip the line to the right of the box" << std::endl;
62  x = _x1;
63  y = y0 + (y1-y0)*(x-x0)/(x1-x0);
64  }
65 
66  //std::cout << "x = " << x << ", y = " << y << std::endl;
67 
68  if ( code == clipCode0 )
69  {
70  // modify the first coord
71  //std::cout << "modify the first coord" << std::endl;
72  x0 = x;
73  y0 = y;
74  clipCode0 = ClipCode(x0,y0);
75  }
76  else
77  {
78  // modify the second coord
79  //std::cout << "modify the second coord" << std::endl;
80  x1 = x;
81  y1 = y;
82  clipCode1 = ClipCode(x1,y1);
83  }
84  }
85 
86  return true;
87  }
88 
89  void Print(std::ostream& os = std::cout)
90  {
91  os << _x0 << " " << _y0 << ", " << _x1 << " " << _y1 << std::endl;
92  }
93 
94 private:
95  enum { RIGHT=1, BOTTOM=2, LEFT=4, TOP=8 };
96 
97  int ClipCode(const double x, const double y) const
98  {
99  int code = 0;
100  if ( x > _x1 ) code |= RIGHT;
101  else if ( x < _x0 ) code |= LEFT;
102  if ( y > _y1 ) code |= TOP;
103  else if ( y < _y0 ) code |= BOTTOM;
104  return code;
105  }
106 
107  double _x0;
108  double _y0;
109  double _x1;
110  double _y1;
111 };
112 
113 #endif // __PHBBOX_H__
Definition: PHBBox.h:11
void Print(std::ostream &os=std::cout)
Definition: PHBBox.h:89
PHBBox(const double x0, const double y0, const double x1, const double y1)
Construct with the boundaries in x and y.
Definition: PHBBox.h:15
bool ClipLine(double &x0, double &y0, double &x1, double &y1) const
Definition: PHBBox.h:21