source: branches/FACT++_lidctrl_new_eth/erfa/src/cr.c@ 19894

Last change on this file since 19894 was 18711, checked in by tbretz, 8 years ago
Updated to ERFA 1.3.0 (no relevant code change except the leap second at the beginning of 2017)
File size: 3.4 KB
Line 
1#include "erfa.h"
2
3void eraCr(double r[3][3], double c[3][3])
4/*
5** - - - - - -
6** e r a C r
7** - - - - - -
8**
9** Copy an r-matrix.
10**
11** Given:
12** r double[3][3] r-matrix to be copied
13**
14** Returned:
15** c double[3][3] copy
16**
17** Called:
18** eraCp copy p-vector
19**
20** Copyright (C) 2013-2016, NumFOCUS Foundation.
21** Derived, with permission, from the SOFA library. See notes at end of file.
22*/
23{
24 eraCp(r[0], c[0]);
25 eraCp(r[1], c[1]);
26 eraCp(r[2], c[2]);
27
28 return;
29
30}
31/*----------------------------------------------------------------------
32**
33**
34** Copyright (C) 2013-2016, NumFOCUS Foundation.
35** All rights reserved.
36**
37** This library is derived, with permission, from the International
38** Astronomical Union's "Standards of Fundamental Astronomy" library,
39** available from http://www.iausofa.org.
40**
41** The ERFA version is intended to retain identical functionality to
42** the SOFA library, but made distinct through different function and
43** file names, as set out in the SOFA license conditions. The SOFA
44** original has a role as a reference standard for the IAU and IERS,
45** and consequently redistribution is permitted only in its unaltered
46** state. The ERFA version is not subject to this restriction and
47** therefore can be included in distributions which do not support the
48** concept of "read only" software.
49**
50** Although the intent is to replicate the SOFA API (other than
51** replacement of prefix names) and results (with the exception of
52** bugs; any that are discovered will be fixed), SOFA is not
53** responsible for any errors found in this version of the library.
54**
55** If you wish to acknowledge the SOFA heritage, please acknowledge
56** that you are using a library derived from SOFA, rather than SOFA
57** itself.
58**
59**
60** TERMS AND CONDITIONS
61**
62** Redistribution and use in source and binary forms, with or without
63** modification, are permitted provided that the following conditions
64** are met:
65**
66** 1 Redistributions of source code must retain the above copyright
67** notice, this list of conditions and the following disclaimer.
68**
69** 2 Redistributions in binary form must reproduce the above copyright
70** notice, this list of conditions and the following disclaimer in
71** the documentation and/or other materials provided with the
72** distribution.
73**
74** 3 Neither the name of the Standards Of Fundamental Astronomy Board,
75** the International Astronomical Union nor the names of its
76** contributors may be used to endorse or promote products derived
77** from this software without specific prior written permission.
78**
79** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
80** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
81** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
82** FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
83** COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
84** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
85** BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
86** LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
87** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
88** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
89** ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
90** POSSIBILITY OF SUCH DAMAGE.
91**
92*/
Note: See TracBrowser for help on using the repository browser.