Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/********************************************************************************
* *
* S i n g l e - P r e c i s i o n E x t e n t C l a s s *
* *
*********************************************************************************
* Copyright (C) 2004,2005 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *
*********************************************************************************
* $Id: FXExtentf.h 2335 2006-01-28 02:33:03Z lyle $ *
********************************************************************************/
#ifndef FXEXTENTF_H
#define FXEXTENTF_H
namespace FX {
/// Extent
class FXExtentf {
public:
FXVec2f lower;
FXVec2f upper;
public:
/// Default constructor
FXExtentf(){}
/// Copy constructor
FXExtentf(const FXExtentf& ext):lower(ext.lower),upper(ext.upper){}
/// Initialize from two vectors
FXExtentf(const FXVec2f& lo,const FXVec2f& hi):lower(lo),upper(hi){}
/// Initialize from six numbers
FXExtentf(FXfloat xlo,FXfloat xhi,FXfloat ylo,FXfloat yhi):lower(xlo,ylo),upper(xhi,yhi){}
/// Assignment
FXExtentf& operator=(const FXExtentf& ext){ lower=ext.lower; upper=ext.upper; return *this; }
/// Indexing with 0..1
FXVec2f& operator[](FXint i){ return (&lower)[i]; }
/// Indexing with 0..1
const FXVec2f& operator[](FXint i) const { return (&lower)[i]; }
/// Comparison
bool operator==(const FXExtentf& ext) const { return lower==ext.lower && upper==ext.upper;}
bool operator!=(const FXExtentf& ext) const { return lower!=ext.lower || upper!=ext.upper;}
/// Width of box
FXfloat width() const { return upper.x-lower.x; }
/// Height of box
FXfloat height() const { return upper.y-lower.y; }
/// Longest side
FXfloat longest() const;
/// shortest side
FXfloat shortest() const;
/// Length of diagonal
FXfloat diameter() const;
/// Get radius of box
FXfloat radius() const;
/// Compute diagonal
FXVec2f diagonal() const;
/// Get center of box
FXVec2f center() const;
/// Test if empty
bool empty() const;
/// Test if box contains point x,y
bool contains(FXfloat x,FXfloat y) const;
/// Test if box contains point p
bool contains(const FXVec2f& p) const;
/// Test if box properly contains another box
bool contains(const FXExtentf& ext) const;
/// Include point
FXExtentf& include(FXfloat x,FXfloat y);
/// Include point
FXExtentf& include(const FXVec2f& v);
/// Include given range into extent
FXExtentf& include(const FXExtentf& ext);
/// Test if bounds overlap
friend FXAPI bool overlap(const FXExtentf& a,const FXExtentf& b);
/// Get corner number 0..3
FXVec2f corner(FXint c) const { return FXVec2f((&lower)[c&1].x, (&lower)[(c>>1)&1].y); }
/// Union of two boxes
friend FXAPI FXExtentf unite(const FXExtentf& a,const FXExtentf& b);
/// Intersection of two boxes
friend FXAPI FXExtentf intersect(const FXExtentf& a,const FXExtentf& b);
/// Save object to a stream
friend FXAPI FXStream& operator<<(FXStream& store,const FXExtentf& ext);
/// Load object from a stream
friend FXAPI FXStream& operator>>(FXStream& store,FXExtentf& ext);
};
extern FXAPI bool overlap(const FXExtentf& a,const FXExtentf& b);
extern FXAPI FXExtentf unite(const FXExtentf& a,const FXExtentf& b);
extern FXAPI FXExtentf intersect(const FXExtentf& a,const FXExtentf& b);
extern FXAPI FXStream& operator<<(FXStream& store,const FXExtentf& ext);
extern FXAPI FXStream& operator>>(FXStream& store,FXExtentf& ext);
}
#endif