LSST Applications  21.0.0+3c14b91618,21.0.0+9f51b1e3f7,21.0.0-1-ga51b5d4+6691386486,21.0.0-10-g2408eff+2abf8e6692,21.0.0-10-g560fb7b+4d6b2593e7,21.0.0-10-gcf60f90+3282c3fba3,21.0.0-15-g490e301a+3bb30e68ef,21.0.0-2-g103fe59+2768baa6eb,21.0.0-2-g1367e85+7f080822af,21.0.0-2-g45278ab+9f51b1e3f7,21.0.0-2-g5242d73+7f080822af,21.0.0-2-g7f82c8f+c804b2348a,21.0.0-2-g8f08a60+e6fd6d9ff9,21.0.0-2-ga326454+c804b2348a,21.0.0-2-gde069b7+66c51b65da,21.0.0-2-gecfae73+7b7e4bc850,21.0.0-2-gfc62afb+7f080822af,21.0.0-20-g09baf175d+b753e4a737,21.0.0-3-g357aad2+041fbde335,21.0.0-3-g4be5c26+7f080822af,21.0.0-3-g65f322c+5f9b799490,21.0.0-3-g7d9da8d+3c14b91618,21.0.0-3-gaa929c8+4d6b2593e7,21.0.0-3-ge02ed75+8a90696ee3,21.0.0-4-g3af6bfd+6a1ffca332,21.0.0-4-g591bb35+8a90696ee3,21.0.0-4-g88306b8+fb98652b4f,21.0.0-4-gccdca77+86bf7a300d,21.0.0-4-ge8a399c+2e6fe0c655,21.0.0-46-g880d6fab+d14224996b,21.0.0-6-g2d4f3f3+9f51b1e3f7,21.0.0-6-g4e60332+8a90696ee3,21.0.0-6-g8356267+828d7849ed,21.0.0-6-gb9875a0+49236cfe85,21.0.0-7-g98eecf7+3609eddee2,21.0.0-8-g79a436f+a6e44ac77b,21.0.0-9-g2abd0ea+f5d0ba4120,master-gac4afde19b+8a90696ee3,w.2021.09
LSST Data Management Base Package
_geom.cc
Go to the documentation of this file.
1 /*
2  * This file is part of afw.
3  *
4  * Developed for the LSST Data Management System.
5  * This product includes software developed by the LSST Project
6  * (https://www.lsst.org).
7  * See the COPYRIGHT file at the top-level directory of this distribution
8  * for details of code ownership.
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program. If not, see <https://www.gnu.org/licenses/>.
22  */
23 
24 #include "pybind11/pybind11.h"
25 #include "lsst/utils/python.h"
26 
27 namespace lsst {
28 namespace afw {
29 namespace geom {
30 
32 namespace polygon {
34 }
42 namespace detail {
44 }
45 
46 PYBIND11_MODULE(_geom, mod) {
47  lsst::utils::python::WrapperCollection wrappers(mod, "lsst.afw.geom");
48  wrapEndpoint(wrappers);
49  polygon::wrapPolygon(wrappers);
50  wrapSipApproximation(wrappers);
51  wrapSkyWcs(wrappers);
52  wrapSpan(wrappers);
53  wrapSpanSet(wrappers);
54  wrapTransform(wrappers);
55  wrapTransformFactory(wrappers);
56  wrappers.makeSubmodule("wcsUtils");
57  wrapWcsUtils(wrappers);
58  wrappers.finish();
59 }
60 } // namespace geom
61 } // namespace afw
62 } // namespace lsst
A helper class for subdividing pybind11 module across multiple translation units (i....
Definition: python.h:242
WrapperCollection makeSubmodule(std::string const &name)
Create a WrapperCollection for a submodule defined in the same binary.
Definition: python.h:318
void finish()
Invoke all deferred wrapper-declaring callables.
Definition: python.h:435
void wrapFrameSetUtils(lsst::utils::python::WrapperCollection &)
void wrapPolygon(lsst::utils::python::WrapperCollection &)
Definition: _polygon.cc:129
void wrapWcsUtils(lsst::utils::python::WrapperCollection &)
Definition: _wcsUtils.cc:46
void wrapSpan(lsst::utils::python::WrapperCollection &)
Definition: _span.cc:98
void wrapTransform(lsst::utils::python::WrapperCollection &)
Definition: _transform.cc:129
void wrapEndpoint(lsst::utils::python::WrapperCollection &wrappers)
Definition: _endpoint.cc:201
PYBIND11_MODULE(_geom, mod)
Definition: _geom.cc:46
void wrapTransformFactory(lsst::utils::python::WrapperCollection &)
void wrapSpanSet(lsst::utils::python::WrapperCollection &)
Definition: _spanSet.cc:335
void wrapSipApproximation(lsst::utils::python::WrapperCollection &)
void wrapSkyWcs(lsst::utils::python::WrapperCollection &)
Definition: _skyWcs.cc:165
A base class for image defects.