LSST Applications g063fba187b+fb789a0310,g0f08755f38+4ed9382ebc,g1653933729+a8ce1bb630,g168dd56ebc+a8ce1bb630,g1a2382251a+c4e15444a7,g20f6ffc8e0+4ed9382ebc,g217e2c1bcf+2b5a5d4d95,g28da252d5a+e4b0ccb2cc,g2bbee38e9b+253935c60e,g2bc492864f+253935c60e,g3156d2b45e+6e55a43351,g32e5bea42b+7f2d6cc4a6,g347aa1857d+253935c60e,g35bb328faa+a8ce1bb630,g3a166c0a6a+253935c60e,g3b1af351f3+a8ce1bb630,g3e281a1b8c+c5dd892a6c,g414038480c+416496e02f,g41af890bb2+e1caef376f,g7af13505b9+cd8c57bfa4,g80478fca09+af657f4857,g82479be7b0+6c61ef7712,g858d7b2824+4ed9382ebc,g89c8672015+f4add4ffd5,g9125e01d80+a8ce1bb630,ga5288a1d22+08423ff364,gb58c049af0+d64f4d3760,gc28159a63d+253935c60e,gcab2d0539d+e2f697cb85,gcf0d15dbbd+e33167d631,gda6a2b7d83+e33167d631,gdaeeff99f8+1711a396fd,ge79ae78c31+253935c60e,gef2f8181fd+3031e3cf99,gf0baf85859+c1f95f4921,gfa517265be+4ed9382ebc,gfa999e8aa5+17cd334064,gfdc7815f14+bb6dc5b476,w.2024.50
LSST Data Management Base Package
Loading...
Searching...
No Matches
Angle.cc
Go to the documentation of this file.
1/*
2 * This file is part of sphgeom.
3 *
4 * Developed for the LSST Data Management System.
5 * This product includes software developed by the LSST Project
6 * (http://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 software is dual licensed under the GNU General Public License and also
11 * under a 3-clause BSD license. Recipients may choose which of these licenses
12 * to use; please see the files gpl-3.0.txt and/or bsd_license.txt,
13 * respectively. If you choose the GPL option then the following text applies
14 * (but note that there is still no warranty even if you opt for BSD instead):
15 *
16 * This program is free software: you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation, either version 3 of the License, or
19 * (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program. If not, see <http://www.gnu.org/licenses/>.
28 */
29
32
33#include "lsst/sphgeom/Angle.h"
34
35#include <cstdio>
36#include <ostream>
37
38namespace lsst {
39namespace sphgeom {
40
42 char buf[32];
43 std::snprintf(buf, sizeof(buf), "%.17g", a.asRadians());
44 return os << buf;
45}
46
47}} // namespace lsst::sphgeom
Angle represents an angle in radians.
Definition Angle.h:50
T snprintf(T... args)
std::ostream & operator<<(std::ostream &, Angle const &)
Definition Angle.cc:41
This file declares a class for representing angles.