LSST Applications g0b6bd0c080+a72a5dd7e6,g1182afd7b4+2a019aa3bb,g17e5ecfddb+2b8207f7de,g1d67935e3f+06cf436103,g38293774b4+ac198e9f13,g396055baef+6a2097e274,g3b44f30a73+6611e0205b,g480783c3b1+98f8679e14,g48ccf36440+89c08d0516,g4b93dc025c+98f8679e14,g5c4744a4d9+a302e8c7f0,g613e996a0d+e1c447f2e0,g6c8d09e9e7+25247a063c,g7271f0639c+98f8679e14,g7a9cd813b8+124095ede6,g9d27549199+a302e8c7f0,ga1cf026fa3+ac198e9f13,ga32aa97882+7403ac30ac,ga786bb30fb+7a139211af,gaa63f70f4e+9994eb9896,gabf319e997+ade567573c,gba47b54d5d+94dc90c3ea,gbec6a3398f+06cf436103,gc6308e37c7+07dd123edb,gc655b1545f+ade567573c,gcc9029db3c+ab229f5caf,gd01420fc67+06cf436103,gd877ba84e5+06cf436103,gdb4cecd868+6f279b5b48,ge2d134c3d5+cc4dbb2e3f,ge448b5faa6+86d1ceac1d,gecc7e12556+98f8679e14,gf3ee170dca+25247a063c,gf4ac96e456+ade567573c,gf9f5ea5b4d+ac198e9f13,gff490e6085+8c2580be5c,w.2022.27
LSST Data Management Base Package
_box3d.cc
Go to the documentation of this file.
1/*
2 * LSST Data Management System
3 * See COPYRIGHT file at the top of the source tree.
4 *
5 * This product includes software developed by the
6 * LSST Project (http://www.lsst.org/).
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 LSST License Statement and
19 * the GNU General Public License along with this program. If not,
20 * see <https://www.lsstcorp.org/LegalNotices/>.
21 */
22#include "pybind11/pybind11.h"
23#include "pybind11/numpy.h"
24
25#include "lsst/sphgeom/python.h"
26
27#include "lsst/sphgeom/Box3d.h"
30
31namespace py = pybind11;
32using namespace pybind11::literals;
33
34namespace lsst {
35namespace sphgeom {
36
37template <>
38void defineClass(py::class_<Box3d, std::shared_ptr<Box3d>> &cls) {
39 cls.def_static("empty", &Box3d::empty);
40 cls.def_static("full", &Box3d::full);
41 cls.def_static("aroundUnitSphere", &Box3d::aroundUnitSphere);
42
43 cls.def(py::init<>());
44 cls.def(py::init<Vector3d const &>(), "vector"_a);
45 cls.def(py::init<Vector3d const &, Vector3d const &>(), "vector1"_a,
46 "vector2"_a);
47 cls.def(py::init<Vector3d const &, double, double, double>(), "center"_a,
48 "halfWidth"_a, "halfHeight"_a, "halfDepth"_a);
49 cls.def(py::init<Interval1d const &, Interval1d const &,
50 Interval1d const &>(),
51 "x"_a, "y"_a, "z"_a);
52 cls.def(py::init<Box3d const &>(), "box3d"_a);
53
54 cls.def("__eq__",
55 (bool (Box3d::*)(Box3d const &) const) & Box3d::operator==,
56 py::is_operator());
57 cls.def("__eq__",
58 (bool (Box3d::*)(Vector3d const &) const) & Box3d::operator==,
59 py::is_operator());
60 cls.def("__ne__",
61 (bool (Box3d::*)(Box3d const &) const) & Box3d::operator!=,
62 py::is_operator());
63 cls.def("__ne__",
64 (bool (Box3d::*)(Vector3d const &) const) & Box3d::operator!=,
65 py::is_operator());
66 cls.def("__contains__",
67 (bool (Box3d::*)(Vector3d const &) const) & Box3d::contains,
68 py::is_operator());
69 cls.def("__contains__",
70 (bool (Box3d::*)(Box3d const &) const) & Box3d::contains,
71 py::is_operator());
72 cls.def("__len__", [](Box3d const &self) { return py::int_(3); });
73 cls.def("__getitem__", [](Box3d const &self, py::int_ row) {
74 return self(static_cast<int>(python::convertIndex(3, row)));
75 });
76
77 cls.def("x", &Box3d::x);
78 cls.def("y", &Box3d::y);
79 cls.def("z", &Box3d::z);
80 cls.def("isEmpty", &Box3d::isEmpty);
81 cls.def("isFull", &Box3d::isFull);
82 cls.def("getCenter", &Box3d::getCenter);
83 cls.def("getWidth", &Box3d::getWidth);
84 cls.def("getHeight", &Box3d::getHeight);
85 cls.def("getDepth", &Box3d::getDepth);
86
87 cls.def("contains",
88 (bool (Box3d::*)(Vector3d const &) const) & Box3d::contains);
89 cls.def("contains",
90 (bool (Box3d::*)(Box3d const &) const) & Box3d::contains);
91 cls.def("contains", py::vectorize((bool (Box3d::*)(double, double, double) const)&Box3d::contains),
92 "x"_a, "y"_a, "z"_a);
93 cls.def("isDisjointFrom",
94 (bool (Box3d::*)(Vector3d const &) const) & Box3d::isDisjointFrom);
95 cls.def("isDisjointFrom",
96 (bool (Box3d::*)(Box3d const &) const) & Box3d::isDisjointFrom);
97 cls.def("intersects",
98 (bool (Box3d::*)(Vector3d const &) const) & Box3d::intersects);
99 cls.def("intersects",
100 (bool (Box3d::*)(Box3d const &) const) & Box3d::intersects);
101 cls.def("isWithin",
102 (bool (Box3d::*)(Vector3d const &) const) & Box3d::isWithin);
103 cls.def("isWithin",
104 (bool (Box3d::*)(Box3d const &) const) & Box3d::isWithin);
105
106 cls.def("clipTo", (Box3d & (Box3d::*)(Vector3d const &)) & Box3d::clipTo);
107 cls.def("clipTo", (Box3d & (Box3d::*)(Box3d const &)) & Box3d::clipTo);
108 cls.def("clippedTo",
109 (Box3d(Box3d::*)(Vector3d const &) const) & Box3d::clippedTo);
110 cls.def("clippedTo",
111 (Box3d(Box3d::*)(Box3d const &) const) & Box3d::clippedTo);
112 cls.def("expandTo",
113 (Box3d & (Box3d::*)(Vector3d const &)) & Box3d::expandTo);
114 cls.def("expandTo", (Box3d & (Box3d::*)(Box3d const &)) & Box3d::expandTo);
115 cls.def("expandedTo",
116 (Box3d(Box3d::*)(Vector3d const &) const) & Box3d::expandedTo);
117 cls.def("expandedTo",
118 (Box3d(Box3d::*)(Box3d const &) const) & Box3d::expandedTo);
119
120 cls.def("dilateBy", (Box3d & (Box3d::*)(double)) & Box3d::dilateBy,
121 "radius"_a);
122 cls.def("dilateBy",
124 "width"_a, "height"_a, "depth"_a);
125 cls.def("dilatedBy", (Box3d(Box3d::*)(double) const) & Box3d::dilatedBy,
126 "radius"_a);
127 cls.def("dilatedBy",
129 "width"_a, "height"_a, "depth"_a);
130 cls.def("erodeBy", (Box3d & (Box3d::*)(double)) & Box3d::erodeBy,
131 "radius"_a);
132 cls.def("erodeBy",
134 "width"_a, "height"_a, "depth"_a);
135 cls.def("erodedBy", (Box3d(Box3d::*)(double) const) & Box3d::erodedBy,
136 "radius"_a);
137 cls.def("erodedBy",
139 "width"_a, "height"_a, "depth"_a);
140
141 cls.def("relate",
142 (Relationship(Box3d::*)(Vector3d const &) const) & Box3d::relate);
143 cls.def("relate",
144 (Relationship(Box3d::*)(Box3d const &) const) & Box3d::relate);
145
146 cls.def("__str__", [](Box3d const &self) {
147 return py::str("[{!s},\n"
148 " {!s},\n"
149 " {!s}]")
150 .format(self.x(), self.y(), self.z());
151 });
152 cls.def("__repr__", [](Box3d const &self) {
153 return py::str("Box3d({!r},\n"
154 " {!r},\n"
155 " {!r})")
156 .format(self.x(), self.y(), self.z());
157 });
158 cls.def("__reduce__", [cls](Box3d const &self) {
159 return py::make_tuple(cls,
160 py::make_tuple(self.x(), self.y(), self.z()));
161 });
162}
163
164} // sphgeom
165} // lsst
This file declares a class for representing axis-aligned bounding boxes in ℝ³.
double x
double z
Definition: Match.cc:44
int y
Definition: SpanSet.cc:48
Box3d represents a box in ℝ³.
Definition: Box3d.h:42
double getHeight() const
getHeight returns the height (y-axis extent) of this box.
Definition: Box3d.h:149
bool isEmpty() const
isEmpty returns true if this box does not contain any points.
Definition: Box3d.h:128
static Box3d empty()
Definition: Box3d.h:45
bool isFull() const
isFull returns true if this box contains all points in ℝ³.
Definition: Box3d.h:133
bool intersects(Vector3d const &b) const
Definition: Box3d.h:186
Box3d erodedBy(double r) const
Definition: Box3d.h:301
double getDepth() const
getDepth returns the depth (z-axis extent) of this box.
Definition: Box3d.h:153
Interval1d const & x() const
Definition: Box3d.h:123
Box3d & dilateBy(double r)
dilateBy minimally expands or shrinks this Box to include or remove all points within distance |r| of...
Definition: Box3d.h:280
Box3d & expandTo(Vector3d const &b)
Definition: Box3d.h:247
Interval1d const & y() const
Definition: Box3d.h:124
bool isDisjointFrom(Vector3d const &b) const
Definition: Box3d.h:178
bool isWithin(Vector3d const &b) const
Definition: Box3d.h:202
Box3d & clipTo(Vector3d const &b)
Definition: Box3d.h:217
Box3d dilatedBy(double r) const
Definition: Box3d.h:281
Box3d expandedTo(Vector3d const &b) const
Definition: Box3d.h:265
static Box3d full()
Definition: Box3d.h:49
double getWidth() const
getWidth returns the width (x-axis extent) of this box.
Definition: Box3d.h:145
Box3d & erodeBy(double r)
Definition: Box3d.h:300
Box3d clippedTo(Vector3d const &b) const
Definition: Box3d.h:236
static Box3d aroundUnitSphere()
aroundUnitSphere returns a minimal Box3d containing the unit sphere.
Definition: Box3d.h:56
Vector3d getCenter() const
getCenter returns the center of this box.
Definition: Box3d.h:139
Interval1d const & z() const
Definition: Box3d.h:125
bool contains(Vector3d const &b) const
Definition: Box3d.h:158
Relationship relate(Vector3d const &v) const
Definition: Box3d.h:309
Interval1d represents closed intervals of ℝ.
Definition: Interval1d.h:40
Vector3d is a vector in ℝ³ with components stored in double precision.
Definition: Vector3d.h:44
ptrdiff_t convertIndex(ptrdiff_t len, pybind11::int_ i)
Convert a Python index i over a sequence with length len to a non-negative (C++ style) index,...
Definition: utils.h:40
std::bitset< 3 > Relationship
Relationship describes how two sets are related.
Definition: Relationship.h:35
void defineClass(Pybind11Class &cls)
A base class for image defects.
int row
Definition: CR.cc:145