1 /* -------------------------------------------------------------------------- *
2  *                       Simbody(tm): SimTKcommon                             *
3  * -------------------------------------------------------------------------- *
4  * This is part of the SimTK biosimulation toolkit originating from           *
5  * Simbios, the NIH National Center for Physics-Based Simulation of           *
6  * Biological Structures at Stanford, funded under the NIH Roadmap for        *
7  * Medical Research, grant U54 GM072970. See https://simtk.org/home/simbody.  *
8  *                                                                            *
9  * Portions copyright (c) 2012 Stanford University and the Authors.           *
10  * Authors: Michael Sherman                                                   *
11  * Contributors:                                                              *
12  *                                                                            *
13  * Licensed under the Apache License, Version 2.0 (the "License"); you may    *
14  * not use this file except in compliance with the License. You may obtain a  *
15  * copy of the License at http://www.apache.org/licenses/LICENSE-2.0.         *
16  *                                                                            *
17  * Unless required by applicable law or agreed to in writing, software        *
18  * distributed under the License is distributed on an "AS IS" BASIS,          *
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   *
20  * See the License for the specific language governing permissions and        *
21  * limitations under the License.                                             *
22  * -------------------------------------------------------------------------- */
23 
24 /**@file
25  * Definitions of external global constants of types CoordinateAxis and
26  * CoordinateDirection.
27  */
28 
29 #include "SimTKcommon/internal/common.h"
30 #include "SimTKcommon/internal/CoordinateAxis.h"
31 
32 namespace SimTK {
33 
34 // These constants are global external symbols exported by the library. See
35 // the CoordinateAxis.h header file for information.
36 const CoordinateAxis::XCoordinateAxis      XAxis;
37 const CoordinateAxis::YCoordinateAxis      YAxis;
38 const CoordinateAxis::ZCoordinateAxis      ZAxis;
39 
40 const CoordinateDirection::NegXDirection   NegXAxis;
41 const CoordinateDirection::NegYDirection   NegYAxis;
42 const CoordinateDirection::NegZDirection   NegZAxis;
43 
44 
45 }  // End of namespace SimTK
46 
47 
48