]> git.saurik.com Git - wxWidgets.git/blame - src/common/geometry.cpp
Try this again
[wxWidgets.git] / src / common / geometry.cpp
CommitLineData
07cdd027 1/////////////////////////////////////////////////////////////////////////////
11e82c1b 2// Name: common/geometry.cpp
07cdd027
SC
3// Purpose: Common Geometry Classes
4// Author: Stefan Csomor
5// Modified by:
6// Created: 08/05/99
11e82c1b
VZ
7// RCS-ID:
8// Copyright: (c) 1999 Stefan Csomor
9// Licence: wxWindows licence
07cdd027
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
cd79f7b0 13 #pragma implementation "geometry.cpp"
07cdd027
SC
14#endif
15
07cdd027
SC
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19
20#ifdef __BORLANDC__
21#pragma hdrstop
22#endif
23
c3a4297c
VZ
24#if wxUSE_GEOMETRY
25
07cdd027
SC
26#include "wx/log.h"
27#include <string.h>
28
07cdd027
SC
29#include "wx/geometry.h"
30#include "wx/datstrm.h"
31
ade7e576
VZ
32// normally this is defined in <math.h>
33#ifndef M_PI
34 #define M_PI 3.14159265358979323846
35#endif
36
07cdd027
SC
37//
38// wxPoint2D
39//
40
41//
42// wxRect2D
43//
44
45// wxDouble version
46
47// for the following calculations always remember
48// that the right and bottom edges are not part of a rect
11e82c1b 49
07cdd027
SC
50bool wxRect2DDouble::Intersects( const wxRect2DDouble &rect ) const
51{
11e82c1b
VZ
52 wxDouble left,right,bottom,top;
53 left = wxMax ( m_x , rect.m_x );
54 right = wxMin ( m_x+m_width, rect.m_x + rect.m_width );
55 top = wxMax ( m_y , rect.m_y );
56 bottom = wxMin ( m_y+m_height, rect.m_y + rect.m_height );
57
58 if ( left < right && top < bottom )
59 {
60 return TRUE;
61 }
62 return FALSE;
07cdd027
SC
63}
64
11e82c1b 65void wxRect2DDouble::Intersect( const wxRect2DDouble &src1 , const wxRect2DDouble &src2 , wxRect2DDouble *dest )
07cdd027 66{
11e82c1b
VZ
67 wxDouble left,right,bottom,top;
68 left = wxMax ( src1.m_x , src2.m_x );
69 right = wxMin ( src1.m_x+src1.m_width, src2.m_x + src2.m_width );
70 top = wxMax ( src1.m_y , src2.m_y );
71 bottom = wxMin ( src1.m_y+src1.m_height, src2.m_y + src2.m_height );
72
73 if ( left < right && top < bottom )
74 {
75 dest->m_x = left;
76 dest->m_y = top;
77 dest->m_width = right - left;
78 dest->m_height = bottom - top;
79 }
80 else
81 {
82 dest->m_width = dest->m_height = 0;
83 }
07cdd027
SC
84}
85
11e82c1b 86void wxRect2DDouble::Union( const wxRect2DDouble &src1 , const wxRect2DDouble &src2 , wxRect2DDouble *dest )
07cdd027 87{
11e82c1b
VZ
88 wxDouble left,right,bottom,top;
89
90 left = wxMin ( src1.m_x , src2.m_x );
91 right = wxMax ( src1.m_x+src1.m_width, src2.m_x + src2.m_width );
92 top = wxMin ( src1.m_y , src2.m_y );
93 bottom = wxMax ( src1.m_y+src1.m_height, src2.m_y + src2.m_height );
94
95 dest->m_x = left;
96 dest->m_y = top;
97 dest->m_width = right - left;
98 dest->m_height = bottom - top;
07cdd027
SC
99}
100
11e82c1b 101void wxRect2DDouble::Union( const wxPoint2DDouble &pt )
07cdd027 102{
11e82c1b
VZ
103 wxDouble x = pt.m_x;
104 wxDouble y = pt.m_y;
105
106 if ( x < m_x )
107 {
108 SetLeft( x );
109 }
110 else if ( x < m_x + m_width )
111 {
112 // contained
113 }
114 else
115 {
116 SetRight( x );
117 }
118
119 if ( y < m_y )
120 {
121 SetTop( y );
122 }
123 else if ( y < m_y + m_height )
124 {
125 // contained
126 }
127 else
128 {
129 SetBottom( y );
130 }
07cdd027
SC
131}
132
133void wxRect2DDouble::ConstrainTo( const wxRect2DDouble &rect )
134{
11e82c1b
VZ
135 if ( GetLeft() < rect.GetLeft() )
136 SetLeft( rect.GetLeft() );
137
138 if ( GetRight() > rect.GetRight() )
139 SetRight( rect.GetRight() );
07cdd027 140
11e82c1b
VZ
141 if ( GetBottom() > rect.GetBottom() )
142 SetBottom( rect.GetBottom() );
07cdd027 143
11e82c1b
VZ
144 if ( GetTop() < rect.GetTop() )
145 SetTop( rect.GetTop() );
07cdd027
SC
146}
147
148// integer version
149
150// for the following calculations always remember
151// that the right and bottom edges are not part of a rect
11e82c1b 152
07cdd027
SC
153// wxPoint2D
154
e30285ab 155#if wxUSE_STREAMS
07cdd027 156void wxPoint2DInt::WriteTo( wxDataOutputStream &stream ) const
11e82c1b
VZ
157{
158 stream.Write32( m_x );
159 stream.Write32( m_y );
07cdd027
SC
160}
161
11e82c1b
VZ
162void wxPoint2DInt::ReadFrom( wxDataInputStream &stream )
163{
164 m_x = stream.Read32();
165 m_y = stream.Read32();
07cdd027 166}
e30285ab 167#endif // wxUSE_STREAMS
07cdd027 168
2b5f62a0 169wxDouble wxPoint2DInt::GetVectorAngle() const
07cdd027 170{
11e82c1b
VZ
171 if ( m_x == 0 )
172 {
173 if ( m_y >= 0 )
174 return 90;
175 else
176 return 270;
177 }
178 if ( m_y == 0 )
179 {
180 if ( m_x >= 0 )
181 return 0;
182 else
183 return 180;
184 }
185
ade7e576
VZ
186 // casts needed for MIPSpro compiler under SGI
187 wxDouble deg = atan2( (double)m_y , (double)m_x ) * 180 / M_PI;
11e82c1b
VZ
188 if ( deg < 0 )
189 {
190 deg += 360;
191 }
192 return deg;
07cdd027
SC
193}
194
11e82c1b 195
ade7e576
VZ
196void wxPoint2DInt::SetVectorAngle( wxDouble degrees )
197{
198 wxDouble length = GetVectorLength();
199 m_x = (int)(length * cos( degrees / 180 * M_PI ));
200 m_y = (int)(length * sin( degrees / 180 * M_PI ));
adb1282e 201}
ade7e576 202
adb1282e
SC
203wxDouble wxPoint2DDouble::GetVectorAngle() const
204{
ade7e576
VZ
205 if ( m_x == 0 )
206 {
207 if ( m_y >= 0 )
208 return 90;
209 else
210 return 270;
211 }
212 if ( m_y == 0 )
213 {
214 if ( m_x >= 0 )
215 return 0;
216 else
217 return 180;
218 }
219 wxDouble deg = atan2( m_y , m_x ) * 180 / M_PI;
220 if ( deg < 0 )
221 {
222 deg += 360;
223 }
224 return deg;
adb1282e
SC
225}
226
ade7e576
VZ
227void wxPoint2DDouble::SetVectorAngle( wxDouble degrees )
228{
229 wxDouble length = GetVectorLength();
230 m_x = length * cos( degrees / 180 * M_PI );
231 m_y = length * sin( degrees / 180 * M_PI );
adb1282e
SC
232}
233
07cdd027 234// wxRect2D
11e82c1b 235
07cdd027
SC
236bool wxRect2DInt::Intersects( const wxRect2DInt &rect ) const
237{
11e82c1b
VZ
238 wxInt32 left,right,bottom,top;
239 left = wxMax ( m_x , rect.m_x );
240 right = wxMin ( m_x+m_width, rect.m_x + rect.m_width );
241 top = wxMax ( m_y , rect.m_y );
242 bottom = wxMin ( m_y+m_height, rect.m_y + rect.m_height );
243
244 if ( left < right && top < bottom )
245 {
246 return TRUE;
247 }
248 return FALSE;
07cdd027
SC
249}
250
11e82c1b 251void wxRect2DInt::Intersect( const wxRect2DInt &src1 , const wxRect2DInt &src2 , wxRect2DInt *dest )
07cdd027 252{
11e82c1b
VZ
253 wxInt32 left,right,bottom,top;
254 left = wxMax ( src1.m_x , src2.m_x );
255 right = wxMin ( src1.m_x+src1.m_width, src2.m_x + src2.m_width );
256 top = wxMax ( src1.m_y , src2.m_y );
257 bottom = wxMin ( src1.m_y+src1.m_height, src2.m_y + src2.m_height );
258
259 if ( left < right && top < bottom )
260 {
261 dest->m_x = left;
262 dest->m_y = top;
263 dest->m_width = right - left;
264 dest->m_height = bottom - top;
265 }
266 else
267 {
268 dest->m_width = dest->m_height = 0;
269 }
07cdd027
SC
270}
271
11e82c1b 272void wxRect2DInt::Union( const wxRect2DInt &src1 , const wxRect2DInt &src2 , wxRect2DInt *dest )
07cdd027 273{
11e82c1b
VZ
274 wxInt32 left,right,bottom,top;
275
276 left = wxMin ( src1.m_x , src2.m_x );
277 right = wxMax ( src1.m_x+src1.m_width, src2.m_x + src2.m_width );
278 top = wxMin ( src1.m_y , src2.m_y );
279 bottom = wxMax ( src1.m_y+src1.m_height, src2.m_y + src2.m_height );
280
281 dest->m_x = left;
282 dest->m_y = top;
283 dest->m_width = right - left;
284 dest->m_height = bottom - top;
07cdd027
SC
285}
286
11e82c1b 287void wxRect2DInt::Union( const wxPoint2DInt &pt )
07cdd027 288{
11e82c1b
VZ
289 wxInt32 x = pt.m_x;
290 wxInt32 y = pt.m_y;
291
292 if ( x < m_x )
293 {
294 SetLeft( x );
295 }
296 else if ( x < m_x + m_width )
297 {
298 // contained
299 }
300 else
301 {
302 SetRight( x );
303 }
304
305 if ( y < m_y )
306 {
307 SetTop( y );
308 }
309 else if ( y < m_y + m_height )
310 {
311 // contained
312 }
313 else
314 {
315 SetBottom( y );
316 }
07cdd027
SC
317}
318
319void wxRect2DInt::ConstrainTo( const wxRect2DInt &rect )
320{
11e82c1b
VZ
321 if ( GetLeft() < rect.GetLeft() )
322 SetLeft( rect.GetLeft() );
323
324 if ( GetRight() > rect.GetRight() )
325 SetRight( rect.GetRight() );
07cdd027 326
11e82c1b
VZ
327 if ( GetBottom() > rect.GetBottom() )
328 SetBottom( rect.GetBottom() );
07cdd027 329
11e82c1b
VZ
330 if ( GetTop() < rect.GetTop() )
331 SetTop( rect.GetTop() );
07cdd027
SC
332}
333
334wxRect2DInt& wxRect2DInt::operator=( const wxRect2DInt &r )
11e82c1b
VZ
335{
336 m_x = r.m_x;
337 m_y = r.m_y;
338 m_width = r.m_width;
339 m_height = r.m_height;
340 return *this;
07cdd027
SC
341}
342
e30285ab 343#if wxUSE_STREAMS
07cdd027 344void wxRect2DInt::WriteTo( wxDataOutputStream &stream ) const
11e82c1b
VZ
345{
346 stream.Write32( m_x );
347 stream.Write32( m_y );
348 stream.Write32( m_width );
349 stream.Write32( m_height );
07cdd027
SC
350}
351
11e82c1b
VZ
352void wxRect2DInt::ReadFrom( wxDataInputStream &stream )
353{
354 m_x = stream.Read32();
355 m_y = stream.Read32();
356 m_width = stream.Read32();
357 m_height = stream.Read32();
07cdd027 358}
e30285ab 359#endif // wxUSE_STREAMS
07cdd027 360
c3a4297c 361#endif // wxUSE_GEOMETRY