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