Bioplib
Protein Structure C Library
 All Data Structures Files Functions Variables Typedefs Macros Pages
angle.h
Go to the documentation of this file.
1 /************************************************************************/
2 /**
3 
4  \file angle.h
5 
6  \version V1.10
7  \date 14.08.14
8  \brief Include file for angle functions
9 
10  \copyright (c) UCL / Dr. Andrew C. R. Martin 1993-2014
11  \author Dr. Andrew C. R. Martin
12  \par
13  Institute of Structural & Molecular Biology,
14  University College London,
15  Gower Street,
16  London.
17  WC1E 6BT.
18  \par
19  andrew@bioinf.org.uk
20  andrew.martin@ucl.ac.uk
21 
22 **************************************************************************
23 
24  This code is NOT IN THE PUBLIC DOMAIN, but it may be copied
25  according to the conditions laid out in the accompanying file
26  COPYING.DOC.
27 
28  The code may be modified as required, but any modifications must be
29  documented so that the person responsible can be identified.
30 
31  The code may not be sold commercially or included as part of a
32  commercial product except as described in the file COPYING.DOC.
33 
34 **************************************************************************
35 
36  Description:
37  ============
38 
39 
40 **************************************************************************
41 
42  Usage:
43  ======
44 
45 **************************************************************************
46 
47  Revision History:
48  =================
49 - V1.5 27.03.95
50 - V1.6 09.07.96 Added TorToCoor()
51 - V1.7 06.09.96 Added includes
52 - V1.8 07.07.14 Use bl prefix for functions By: CTP
53 - V1.9 31.07.14 Updated deprecation: Removed deprecated.h and added
54  prototypes for renamed functions. By: CTP
55 - V1.10 14.08.14 Moved deprecated function prototypes to deprecated.h
56  By: CTP
57 
58 *************************************************************************/
59 /* Includes
60 */
61 #include "MathType.h"
62 #include "SysDefs.h"
63 
64 /************************************************************************/
65 /* Defines and macros
66 */
67 
68 /************************************************************************/
69 /* Globals
70 */
71 
72 /************************************************************************/
73 /* Prototypes
74 */
75 
76 /************************************************************************/
77 
78 #ifndef _ANGLE_H
79 #define _ANGLE_H
80 
81 REAL blAngle(REAL xi, REAL yi, REAL zi, REAL xj, REAL yj, REAL zj,
82  REAL xk, REAL yk, REAL zk);
83 REAL blPhi(REAL xi, REAL yi, REAL zi, REAL xj, REAL yj, REAL zj,
84  REAL xk, REAL yk, REAL zk, REAL xl, REAL yl, REAL zl);
86 REAL blTrueAngle(REAL opp, REAL adj);
87 BOOL blTorToCoor(VEC3F ant1, VEC3F ant2, VEC3F ant3,
88  REAL bond, REAL theta, REAL torsion,
89  VEC3F *coords);
90 
91 
92 
93 /************************************************************************/
94 /* Include deprecated functions */
95 #define _ANGLE_H_DEPRECATED
96 #include "deprecated.h"
97 /************************************************************************/
98 
99 
100 #endif
short BOOL
Definition: SysDefs.h:64
Redirect calls to deprecated functions.
REAL blAngle(REAL xi, REAL yi, REAL zi, REAL xj, REAL yj, REAL zj, REAL xk, REAL yk, REAL zk)
Definition: angle.c:150
BOOL blTorToCoor(VEC3F ant1, VEC3F ant2, VEC3F ant3, REAL bond, REAL theta, REAL torsion, VEC3F *coords)
Definition: TorCoor.c:104
Definition: MathType.h:69
double REAL
Definition: MathType.h:67
REAL blPhi(REAL xi, REAL yi, REAL zi, REAL xj, REAL yj, REAL zj, REAL xk, REAL yk, REAL zk, REAL xl, REAL yl, REAL zl)
Definition: phi.c:107
System-type variable type definitions.
Type definitions for maths.
REAL blSimpleangle(REAL ang)
Definition: simpleangle.c:95
REAL blTrueAngle(REAL opp, REAL adj)
Definition: TrueAngle.c:107