LSST Applications g0fba68d861+c44c4642ff,g123d84c11c+8c5ae1fdc5,g1ec0fe41b4+f0b7a83aa5,g1fd858c14a+d55c29f552,g22210bfa2a+9298f3fc7c,g3533f9d6cb+722901cf7e,g35bb328faa+8c5ae1fdc5,g3fc7d4f5b9+c2ec2f26fd,g4178042926+d73d17933f,g4a8f988797+0519b1fd53,g53246c7159+8c5ae1fdc5,g548d740b8c+47e4a7beb3,g60b5630c4e+722901cf7e,g663da51e9b+859b113070,g67b6fd64d1+c104138150,g78460c75b0+7e33a9eb6d,g786e29fd12+668abc6043,g8352419a5c+8c5ae1fdc5,g8852436030+08cbd4c692,g89139ef638+c104138150,g8b40312ef5+5b6744d273,g989de1cb63+c104138150,g9f33ca652e+ba6fca5554,ga1e959baac+5fbc491aed,ga2f891cd6c+722901cf7e,ga5b27134d2+0c6e989ba2,gabe3b4be73+8856018cbb,gabf8522325+5cb9e9d408,gb1101e3267+2d26775618,gb89ab40317+c104138150,gcf25f946ba+08cbd4c692,gd6cbbdb0b4+be834e5da7,gde0f65d7ad+e537754a52,ge278dab8ac+fa35eb453c,ge410e46f29+c104138150,gf5e32f922b+8c5ae1fdc5,gf67bdafdda+c104138150,gffe7e49bb4+722901cf7e,v29.1.0.rc4
LSST Data Management Base Package
Loading...
Searching...
No Matches
Angle.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 <iostream>
23
24#include "lsst/geom/Angle.h"
25
26namespace lsst {
27namespace geom {
28
29std::ostream& operator<<(std::ostream& s, Angle a) { return s << static_cast<double>(a) << " rad"; }
30
31} // namespace geom
32} // namespace lsst
constexpr Angle(double val, AngleUnit units=radians) noexcept
Construct an Angle with the specified value (interpreted in the given units).
Definition Angle.h:137
std::ostream & operator<<(std::ostream &os, lsst::geom::AffineTransform const &transform)