LSSTApplications  18.0.0+73,19.0.0+5,19.0.0+63,19.0.0+74,19.0.0+9,19.0.0-1-g20d9b18+29,19.0.0-1-g49a97f9+3,19.0.0-1-g5549ca4+4,19.0.0-1-g8c57eb9+29,19.0.0-1-g9a028c0+9,19.0.0-1-ga72da6b+3,19.0.0-1-gb77924a+10,19.0.0-1-gbfe0924+61,19.0.0-1-ge272bc4+29,19.0.0-1-gefe1d0d+45,19.0.0-14-g7511ce4+1,19.0.0-16-g3dc1a33c+1,19.0.0-16-g497ad8f+2,19.0.0-17-g9c22e3c+5,19.0.0-18-g2c901ce+5,19.0.0-18-g35bb99870,19.0.0-19-g2772d4a+4,19.0.0-19-g85fbfd3+4,19.0.0-2-g0d9f9cd+69,19.0.0-2-g260436e+49,19.0.0-2-g9675b69+3,19.0.0-2-gd6f004e+1,19.0.0-2-gde8e5e3+3,19.0.0-2-gff6972b+13,19.0.0-3-ga642a0f,19.0.0-3-gf3b1435+1,19.0.0-4-gac56cce+12,19.0.0-47-g0e06596+1,19.0.0-48-gd5e8b3b4+1,19.0.0-5-g66946eb+1,19.0.0-5-gd8897ba+1,19.0.0-7-g3343160,19.0.0-7-g686a884+4,19.0.0-7-g886f805+1,w.2020.16
LSSTDataManagementBasePackage
Angle.cc
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  * Copyright 2014-2015 AURA/LSST.
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 
25 
26 #include "lsst/sphgeom/Angle.h"
27 
28 #include <cstdio>
29 #include <ostream>
30 
31 namespace lsst {
32 namespace sphgeom {
33 
35  char buf[32];
36  std::snprintf(buf, sizeof(buf), "%.17g", a.asRadians());
37  return os << buf;
38 }
39 
40 }} // namespace lsst::sphgeom
table::Key< int > a
std::ostream & operator<<(std::ostream &, Angle const &)
Definition: Angle.cc:34
A base class for image defects.
double asRadians() const
asRadians returns the value of this angle in units of radians.
Definition: Angle.h:85
Angle represents an angle in radians.
Definition: Angle.h:43
This file declares a class for representing angles.
std::ostream * os
Definition: Schema.cc:746
T snprintf(T... args)
STL class.