1 /* Copyright Jukka Jyl�nki
2
3    Licensed under the Apache License, Version 2.0 (the "License");
4    you may not use this file except in compliance with the License.
5    You may obtain a copy of the License at
6
7        http://www.apache.org/licenses/LICENSE-2.0
8
9    Unless required by applicable law or agreed to in writing, software
10    distributed under the License is distributed on an "AS IS" BASIS,
11    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12    See the License for the specific language governing permissions and
13    limitations under the License. */
14
15 /** @file Rect.h
16         @author Jukka Jyl�nki
17         @brief 2D integral axis-aligned rectangle, equivalent to RECT in Windows API. */
18 #pragma once
19
20 // Define this when building this project to make Rects be transformable to Win32 RECT() structs.
21 // #define MATH_WIN32_INTEROP
22
23 #if defined(WIN32) && defined(MATH_WIN32_INTEROP)
24 #include "../Math/InclWindows.h"
25 #endif
26
27 MATH_BEGIN_NAMESPACE
28
29 /// A 2D integral (x,y),(w,h) -rectangle.
30 class Rect
31 {
32 public:
33         Rect() { left = top = right = bottom = 0; }
34         Rect(int left_, int top_, int width, int height)
35                 :left(left_), top(top_), right(left + width), bottom(top + height) {}
36 //      ~Rect() {}
37
38         int Width() { return right - left; }
39         int Height() { return bottom - top; }
40
41         int left;
42         int top;
43         int right;
44         int bottom;
45
46 #if defined(WIN32) && defined(MATH_WIN32_INTEROP)
47         operator RECT()
48         {
49                 RECT r;
50                 r.top = top;
51                 r.left = left;
52                 r.right = right;
53                 r.bottom = bottom;
54                 return r;
55         }
56         Rect(const RECT &r)
57         {
58                 top = r.top;
59                 left = r.left;
60                 bottom = r.bottom;
61                 right = r.right;
62         }
63 #endif
64 };
65
66 MATH_END_NAMESPACE

Go back to previous page