LSSTApplications  19.0.0-14-gb0260a2+72efe9b372,20.0.0+7927753e06,20.0.0+8829bf0056,20.0.0+995114c5d2,20.0.0+b6f4b2abd1,20.0.0+bddc4f4cbe,20.0.0-1-g253301a+8829bf0056,20.0.0-1-g2b7511a+0d71a2d77f,20.0.0-1-g5b95a8c+7461dd0434,20.0.0-12-g321c96ea+23efe4bbff,20.0.0-16-gfab17e72e+fdf35455f6,20.0.0-2-g0070d88+ba3ffc8f0b,20.0.0-2-g4dae9ad+ee58a624b3,20.0.0-2-g61b8584+5d3db074ba,20.0.0-2-gb780d76+d529cf1a41,20.0.0-2-ged6426c+226a441f5f,20.0.0-2-gf072044+8829bf0056,20.0.0-2-gf1f7952+ee58a624b3,20.0.0-20-geae50cf+e37fec0aee,20.0.0-25-g3dcad98+544a109665,20.0.0-25-g5eafb0f+ee58a624b3,20.0.0-27-g64178ef+f1f297b00a,20.0.0-3-g4cc78c6+e0676b0dc8,20.0.0-3-g8f21e14+4fd2c12c9a,20.0.0-3-gbd60e8c+187b78b4b8,20.0.0-3-gbecbe05+48431fa087,20.0.0-38-ge4adf513+a12e1f8e37,20.0.0-4-g97dc21a+544a109665,20.0.0-4-gb4befbc+087873070b,20.0.0-4-gf910f65+5d3db074ba,20.0.0-5-gdfe0fee+199202a608,20.0.0-5-gfbfe500+d529cf1a41,20.0.0-6-g64f541c+d529cf1a41,20.0.0-6-g9a5b7a1+a1cd37312e,20.0.0-68-ga3f3dda+5fca18c6a4,20.0.0-9-g4aef684+e18322736b,w.2020.45
LSSTDataManagementBasePackage
Extent.cc
Go to the documentation of this file.
1 /*
2  * Developed for the LSST Data Management System.
3  * This product includes software developed by the LSST Project
4  * (https://www.lsst.org).
5  * See the COPYRIGHT file at the top-level directory of this distribution
6  * for details of code ownership.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
22 #include "lsst/utils/hashCombine.h"
24 #include "lsst/geom/Point.h"
25 #include "lsst/geom/Extent.h"
26 
27 namespace lsst {
28 namespace geom {
29 
30 template <typename T, int N>
31 Extent<T, N>::Extent(Point<T, N> const &other) noexcept(Super::IS_ELEMENT_NOTHROW_COPYABLE)
32  : Super(other.asEigen()) {}
33 
34 // The following two template specializations raise Doxygen warnings and produce no documenation.
35 // This is a known Doxygen bug: <https://bugzilla.gnome.org/show_bug.cgi?id=406027>
37 template <typename T>
38 Extent<T, 2>::Extent(Point<T, 2> const &other) noexcept(Super::IS_ELEMENT_NOTHROW_COPYABLE)
39  : Super(other.asEigen()) {}
40 
41 template <typename T>
42 Extent<T, 3>::Extent(Point<T, 3> const &other) noexcept(Super::IS_ELEMENT_NOTHROW_COPYABLE)
43  : Super(other.asEigen()) {}
45 
46 template <typename T, int N>
49  for (int n = 0; n < N; ++n) r[n] = this->_vector[n] == other[n];
50  return r;
51 }
52 
53 template <typename T, int N>
56  for (int n = 0; n < N; ++n) r[n] = this->_vector[n] != other[n];
57  return r;
58 }
59 
60 template <typename T, int N>
63  for (int n = 0; n < N; ++n) r[n] = this->_vector[n] < other[n];
64  return r;
65 }
66 
67 template <typename T, int N>
70  for (int n = 0; n < N; ++n) r[n] = this->_vector[n] <= other[n];
71  return r;
72 }
73 
74 template <typename T, int N>
77  for (int n = 0; n < N; ++n) r[n] = this->_vector[n] > other[n];
78  return r;
79 }
80 
81 template <typename T, int N>
84  for (int n = 0; n < N; ++n) r[n] = this->_vector[n] >= other[n];
85  return r;
86 }
87 
88 template <typename T, int N>
89 Point<T, N> ExtentBase<T, N>::asPoint() const noexcept(Super::IS_ELEMENT_NOTHROW_COPYABLE) {
90  return Point<T, N>(static_cast<Extent<T, N> const &>(*this));
91 }
92 
93 template <typename T, int N>
95  noexcept(Super::IS_ELEMENT_NOTHROW_COPYABLE) {
96  return Point<T, N>(this->_vector + other.asEigen());
97 }
98 
99 template <int N>
100 Extent<int, N> truncate(Extent<double, N> const &input) noexcept {
102  for (int i = 0; i < N; ++i) {
103  result[i] = static_cast<int>(input[i]);
104  }
105  return result;
106 }
107 
108 template <int N>
109 Extent<int, N> floor(Extent<double, N> const &input) noexcept {
111  for (int i = 0; i < N; ++i) {
112  result[i] = std::floor(input[i]);
113  }
114  return result;
115 }
116 
117 template <int N>
118 Extent<int, N> ceil(Extent<double, N> const &input) noexcept {
120  for (int i = 0; i < N; ++i) {
121  result[i] = std::ceil(input[i]);
122  }
123  return result;
124 }
125 
126 template <typename T, int N>
127 std::size_t hash_value(Extent<T, N> const &extent) noexcept {
128  std::size_t result = 0; // Completely arbitrary seed
129  for (int n = 0; n < N; ++n) result = utils::hashCombine(result, extent[n]);
130  return result;
131 }
132 
133 #ifndef DOXYGEN
134 
135 template class ExtentBase<int, 2>;
136 template class ExtentBase<int, 3>;
137 template class ExtentBase<double, 2>;
138 template class ExtentBase<double, 3>;
139 template class Extent<int, 2>;
140 template class Extent<int, 3>;
141 template class Extent<double, 2>;
142 template class Extent<double, 3>;
143 template Extent<double, 2>::Extent(Extent<int, 2> const &);
144 template Extent<double, 3>::Extent(Extent<int, 3> const &);
145 template Extent<double, 2>::Extent(Point<int, 2> const &);
146 template Extent<double, 3>::Extent(Point<int, 3> const &);
147 
148 template Extent<int, 2> truncate(Extent<double, 2> const &);
149 template Extent<int, 3> truncate(Extent<double, 3> const &);
150 template Extent<int, 2> floor(Extent<double, 2> const &);
151 template Extent<int, 3> floor(Extent<double, 3> const &);
152 template Extent<int, 2> ceil(Extent<double, 2> const &);
153 template Extent<int, 3> ceil(Extent<double, 3> const &);
154 
155 template std::size_t hash_value(Extent<int, 2> const &extent) noexcept;
156 template std::size_t hash_value(Extent<int, 3> const &extent) noexcept;
157 template std::size_t hash_value(Extent<double, 2> const &extent) noexcept;
158 template std::size_t hash_value(Extent<double, 3> const &extent) noexcept;
159 
160 #endif // !DOXYGEN
161 
162 } // namespace geom
163 } // namespace lsst
lsst::geom::CoordinateExpr
A boolean coordinate.
Definition: CoordinateExpr.h:50
std::floor
T floor(T... args)
lsst::geom::Extent::Extent
Extent(T val=static_cast< T >(0)) noexcept(Super::IS_ELEMENT_NOTHROW_COPYABLE)
Construct an Extent with all elements set to the same scalar value.
Definition: Extent.h:217
lsst::geom::ExtentBase::eq
CoordinateExpr< N > eq(Extent< T, N > const &other) const noexcept
Definition: Extent.cc:47
lsst::geom::ExtentBase::ge
CoordinateExpr< N > ge(Extent< T, N > const &other) const noexcept
Definition: Extent.cc:82
lsst::geom::hash_value
std::size_t hash_value(Extent< T, N > const &extent) noexcept
Definition: Extent.cc:127
lsst::geom::truncate
Extent< int, N > truncate(Extent< double, N > const &input) noexcept
Return the component-wise truncation (round towards zero).
Definition: Extent.cc:100
CoordinateBase.h
Point.h
hashCombine.h
Extent.h
other
ItemVariant const * other
Definition: Schema.cc:56
lsst::geom::ExtentBase::le
CoordinateExpr< N > le(Extent< T, N > const &other) const noexcept
Definition: Extent.cc:68
result
py::object result
Definition: _schema.cc:429
std::ceil
T ceil(T... args)
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
lsst::geom::ExtentBase
Definition: Extent.h:56
lsst::geom
Definition: AffineTransform.h:36
lsst::utils::hashCombine
std::size_t hashCombine(std::size_t seed) noexcept
Combine hashes.
Definition: hashCombine.h:35
lsst::geom::CoordinateBase< Extent< T, N >, T, N >
lsst::geom::Point< T, 2 >
A coordinate class intended to represent absolute positions (2-d specialization).
Definition: Point.h:211
lsst::geom::ExtentBase::ne
CoordinateExpr< N > ne(Extent< T, N > const &other) const noexcept
Definition: Extent.cc:54
lsst::geom::Point
A coordinate class intended to represent absolute positions.
Definition: CoordinateBase.h:39
lsst::geom::asEigen
Eigen::Vector3d asEigen(sphgeom::Vector3d const &vector) noexcept
Definition: sphgeomUtils.h:36
lsst::geom::ExtentBase::operator+
Extent< T, N > operator+() const noexcept(Super::IS_ELEMENT_NOTHROW_COPYABLE)
Definition: Extent.h:146
std::size_t
lsst::geom::ExtentBase::gt
CoordinateExpr< N > gt(Extent< T, N > const &other) const noexcept
Definition: Extent.cc:75
lsst::geom::floor
Extent< int, N > floor(Extent< double, N > const &input) noexcept
Return the component-wise floor (round towards more negative).
Definition: Extent.cc:109
lsst::geom::ceil
Extent< int, N > ceil(Extent< double, N > const &input) noexcept
Return the component-wise ceil (round towards more positive).
Definition: Extent.cc:118
lsst::geom::ExtentBase::lt
CoordinateExpr< N > lt(Extent< T, N > const &other) const noexcept
Definition: Extent.cc:61
lsst::geom::Extent
A coordinate class intended to represent offsets and dimensions.
Definition: CoordinateBase.h:41
lsst::geom::ExtentBase::asPoint
Point< T, N > asPoint() const noexcept(Super::IS_ELEMENT_NOTHROW_COPYABLE)
Cast this object to an Extent of the same numeric type and dimensionality.
Definition: Extent.cc:89