gucoordinates
PercentCoordinate.hpp
Go to the documentation of this file.
1/*
2 * PercentCoordinate.hpp
3 * guvision_utils
4 *
5 * Created by Callum McColl on 19/06/2020.
6 * Copyright © 2020 Callum McColl. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer in the documentation and/or other materials
18 * provided with the distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgement:
22 *
23 * This product includes software developed by Callum McColl.
24 *
25 * 4. Neither the name of the author nor the names of contributors
26 * may be used to endorse or promote products derived from this
27 * software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
33 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
34 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
35 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES NOEXCEPT; LOSS OF USE, DATA, OR
36 * PROFITS NOEXCEPT; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
37 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
38 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
39 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * -----------------------------------------------------------------------
42 * This program is free software NOEXCEPT; you can redistribute it and/or
43 * modify it under the above terms or under the terms of the GNU
44 * General Public License as published by the Free Software Foundation NOEXCEPT;
45 * either version 2 of the License, or (at your option) any later version.
46 *
47 * This program is distributed in the hope that it will be useful,
48 * but WITHOUT ANY WARRANTY NOEXCEPT; without even the implied warranty of
49 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
50 * GNU General Public License for more details.
51 *
52 * You should have received a copy of the GNU General Public License
53 * along with this program NOEXCEPT; if not, see http://www.gnu.org/licenses/
54 * or write to the Free Software Foundation, Inc., 51 Franklin Street,
55 * Fifth Floor, Boston, MA 02110-1301, USA.
56 *
57 */
58
59#ifndef PERCENTCOORDINATE_HPP
60#define PERCENTCOORDINATE_HPP
61
62#include "percent_coordinate.h"
64#include "PixelCoordinate.hpp"
65#include "CameraCoordinate.hpp"
66#include "CameraPivot.hpp"
67
69
70#include <cstdlib>
71#include <gu_util.h>
72
73namespace GU {
74
75 struct CameraCoordinate; // Forward Declaration.
76 struct PixelCoordinate; // Forward Declaration.
77 struct RelativeCoordinate; // Forward Declaration.
78
80
81 PercentCoordinate() NOEXCEPT;
82 PercentCoordinate(percent_d, percent_d) NOEXCEPT;
83 PercentCoordinate(const PercentCoordinate& other) NOEXCEPT;
84 PercentCoordinate(const gu_percent_coordinate& other) NOEXCEPT;
85#if __cplusplus >= 201103L
86#pragma clang diagnostic push
87#pragma clang diagnostic ignored "-Wc++98-compat"
88 PercentCoordinate(PercentCoordinate&& other) NOEXCEPT;
90#pragma clang diagnostic pop
91#endif
92 ~PercentCoordinate() NOEXCEPT;
93 PercentCoordinate& operator=(const PercentCoordinate& other) NOEXCEPT;
95#if __cplusplus >= 201103L
96#pragma clang diagnostic push
97#pragma clang diagnostic ignored "-Wc++98-compat"
100#pragma clang diagnostic pop
101#endif
102
103 CameraCoordinate cameraCoordinate(const pixels_u, const pixels_u) const NOEXCEPT;
104 PixelCoordinate pixelCoordinate(const pixels_u, const pixels_u) const NOEXCEPT;
105 RelativeCoordinate relativeCoordinate(const GU::CameraPivot &, const int) const NOEXCEPT;
106
107 percent_d x() const NOEXCEPT;
108 void set_x(const percent_d) NOEXCEPT;
109
110 percent_d y() const NOEXCEPT;
111 void set_y(const percent_d) NOEXCEPT;
112
113 percent_d xLowerBound() const NOEXCEPT;
114 percent_d xUpperBound() const NOEXCEPT;
115
116 percent_d yLowerBound() const NOEXCEPT;
117 percent_d yUpperBound() const NOEXCEPT;
118
119 bool operator ==(const PercentCoordinate &other) const NOEXCEPT;
120 bool operator !=(const PercentCoordinate &other) const NOEXCEPT;
121 bool operator ==(const gu_percent_coordinate &other) const NOEXCEPT;
122 bool operator !=(const gu_percent_coordinate &other) const NOEXCEPT;
123
124 };
125
126}
127
128#endif /* PERCENTCOORDINATE_HPP */
Definition: Camera.hpp:66
bool operator!=(const PercentCoordinate &other) const NOEXCEPT
bool operator==(const PercentCoordinate &other) const NOEXCEPT
percent_d y() const NOEXCEPT
void set_y(const percent_d) NOEXCEPT
void set_x(const percent_d) NOEXCEPT
percent_d x() const NOEXCEPT
percent_d xUpperBound() const NOEXCEPT
PercentCoordinate & operator=(const PercentCoordinate &other) NOEXCEPT
percent_d xLowerBound() const NOEXCEPT
CameraCoordinate cameraCoordinate(const pixels_u, const pixels_u) const NOEXCEPT
RelativeCoordinate relativeCoordinate(const GU::CameraPivot &, const int) const NOEXCEPT
percent_d yLowerBound() const NOEXCEPT
PixelCoordinate pixelCoordinate(const pixels_u, const pixels_u) const NOEXCEPT
percent_d yUpperBound() const NOEXCEPT
A gu_percent_coordinate represents the coordinate of a pixel within an image.