r38: renamed filter definitions
[ctsim.git] / include / kmath.h
1 /*****************************************************************************
2 **  This is part of the CTSim program
3 **  Copyright (C) 1983-2000 Kevin Rosenberg
4 **
5 **  $Id: kmath.h,v 1.7 2000/05/04 18:16:34 kevin Exp $
6 **  $Log: kmath.h,v $
7 **  Revision 1.7  2000/05/04 18:16:34  kevin
8 **  renamed filter definitions
9 **
10 **  Revision 1.6  2000/05/02 20:00:25  kevin
11 **  *** empty log message ***
12 **
13 **  Revision 1.5  2000/05/02 15:31:39  kevin
14 **  code cleaning
15 **
16 **  Revision 1.4  2000/04/30 19:17:35  kevin
17 **  Set up include files for conditional INTERACTIVE_GRAPHICS
18 **
19 **  Revision 1.3  2000/04/28 14:14:16  kevin
20 **  *** empty log message ***
21 **
22 **
23 **  This program is free software; you can redistribute it and/or modify
24 **  it under the terms of the GNU General Public License (version 2) as
25 **  published by the Free Software Foundation.
26 **
27 **  This program is distributed in the hope that it will be useful,
28 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
29 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30 **  GNU General Public License for more details.
31 **
32 **  You should have received a copy of the GNU General Public License
33 **  along with this program; if not, write to the Free Software
34 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
35 ******************************************************************************/
36 /******************************************************************************
37  *
38  * PURPOSE
39  *      Header file containing definitions for numerical app's
40  *      Date Started:   Nov 84
41  *
42  *****************************************************************************/
43
44 #ifndef _H_kmath
45 #define _H_kmath
46
47 #include <stdio.h>
48 #include <math.h>
49
50 #define PI      3.14159265358979323846
51 #define HALFPI  1.57079632679489661923  /* PI divided by 2 */
52 #define QUARTPI 0.78539816339744830962  /* PI divided by 4 */
53 #define I_PI    0.31830988618379067154  /* Inverse of PI */
54 #define I_PID2  0.63661977236758134308  /* Inverse of PID2 */
55  
56 #define TWOPI   6.28318530717958647692
57 #define SQRT2   1.414213562373095049
58
59 #define F_EPSILON       1.0E-6
60 #define D_EPSILON       1.0E-10
61
62 #define DEG_TO_RAD(x)   (x*(PI/180.))
63 #define RAD_TO_DEG(x)   (x*(180./PI))
64
65
66 #define ASSUMEDZERO  1E-10
67
68 /* codes for C data types */
69
70 #define DT_CHAR         1
71 #define DT_INT          2
72 #define DT_LONG         3
73 #define DT_FLOAT        4
74 #define DT_DOUBLE       5
75 #define DT_STRING  6
76
77 typedef char     *CMTX_1D;
78 typedef CMTX_1D  *CMTX_2D;
79 typedef CMTX_2D  *CMTX_3D;
80
81 typedef int      *IMTX_1D;
82 typedef IMTX_1D  *IMTX_2D;
83 typedef IMTX_2D  *IMTX_3D;
84
85 typedef float    *FMTX_1D;
86 typedef FMTX_1D  *FMTX_2D;
87 typedef FMTX_2D  *FMTX_3D;
88
89 typedef double   *DMTX_1D;
90 typedef DMTX_1D  *DMTX_2D;
91 typedef DMTX_2D  *DMTX_3D;
92
93 typedef double GRFMTX_2D[3][3];
94 typedef double GRFMTX_3D[4][4];
95
96 union elem_val_un {     /* holds an element value */
97         char      c;
98         int       i;
99         long int  l;
100         float     f;
101         double    d;
102 };
103
104 typedef union elem_val_un  MTX_ELEM_VAL;
105
106
107 union elem_ptr_un {     /* holds a pointer to a 1D vector of any type */
108         char      *c;
109         int       *i;
110         long int  *l;
111         float     *f;
112         double    *d;
113 };
114
115 typedef union elem_ptr_un  MTX_1D;
116 typedef MTX_1D            *MTX_2D;
117 typedef MTX_2D            *MTX_3D;
118
119 union mtx_val_ptr_un {                  /* pointer to matrix values */
120     MTX_1D  m1;
121     MTX_2D  m2;
122     MTX_3D  m3;
123 };
124
125 typedef union mtx_val_ptr_un  MTX_PTR;
126
127 struct matrix_st {
128     unsigned int order;                 /* order, or dimension, of matrix */
129     unsigned int elemtype;              /* element type */
130     unsigned int elemsize;              /* size of element in bytes */
131     unsigned int nx, ny, nz;            /* size of matrix in each dimension */
132     MTX_PTR val;                        /* pointer to matrix values */
133 };
134
135 typedef struct matrix_st MTX;
136 typedef struct matrix_st *MTXP;
137
138 /* DEFINITION IDENTIFICATION
139  *
140  *      Definitions to access a matrix element from an matrix
141  *
142
143 #define me1(mtx,x)\
144   (mtx->elemtype == DT_FLOAT ? mtx->val.m1.f[x] :\
145     (mtx->elemtype == DT_DOUBLE ? mtx->val.m1.d[x] :\
146       (mtx->elemtype == DT_INT ? mtx->val.m1.i[x] :\
147         (mtx->elemtype == DT_LONG ? mtx->val.m1.l[x] :\
148           (mtx->elemtype == DT_CHAR ? mtx->val.m1.c[x] :\
149              0\
150               )))))
151
152 #define me2(mtx,x,y)\
153   (mtx->elemtype == DT_FLOAT ? mtx->val.m2[x].f[y] :\
154     (mtx->elemtype == DT_DOUBLE ? mtx->val.m2[x].d[y] :\
155       (mtx->elemtype == DT_INT ? mtx->val.m2[x].i[y] :\
156         (mtx->elemtype == DT_LONG ? mtx->val.m2[x].l[y] :\
157           (mtx->elemtype == DT_CHAR ? mtx->val.m2[x].c[y] :\
158             0\
159               )))))
160
161
162 #define me3(mtx,x,y,z)\
163   (mtx->elemtype == DT_FLOAT ? mtx->val.m3[x][y].f[z] :\
164     (mtx->elemtype == DT_DOUBLE ? mtx->val.m3[x][y].d[z] :\
165       (mtx->elemtype == DT_INT ? mtx->val.m3[x][y].i[z] :\
166         (mtx->elemtype == DT_LONG ? mtx->val.m3[x][y].l[z] :\
167           (mtx->elemtype == DT_CHAR ? mtx->val.m3[x][y].c[z] :\
168             0\
169                )))))
170 */
171
172 /* clip.c */
173 int clip_rect(double *x1, double *y1, double *x2, double *y2, const double rect[4]);
174 int clip_segment(double *x1, double *y1, double *x2, double *y2, const double u, const double v);
175 int clip_sector(double *x1, double *y1, double *x2, double *y2, const double u, const double v);
176 int clip_circle(double *x1, double *y1, double *x2, double *y2, const double cx, const double cy, const double radius, double t1, double t2);
177 int clip_triangle(double *x1, double *y1, double *x2, double *y2, const double u, const double v, const int clip_xaxis);
178
179 /* lnearest.c */
180 long int lnearest(double x);
181
182 /* minmax.c */
183 double fmax(const double a, const double b);
184 void minmax_dvector(const double array[], const int pts, double *xmin, double *xmax);
185
186 /* mtx_disp.c */
187 void mtx_show(const MTX *mtx);
188 void mtx_prt(const MTX *mtx, FILE *fp);
189 int mtx_prt_elem(const MTX *mtx, FILE *fp, unsigned int x, unsigned int y, unsigned int z);
190
191 /* mtx_elem.c */
192 int mtx_get_elem(const MTX *mtx, MTX_ELEM_VAL *me, const int x, const int y, const int z);
193 int mtx_put_elem(MTX *mtx, const MTX_ELEM_VAL *me, unsigned int x, unsigned int y, unsigned int z);
194
195 /* mtx_inp.c */
196 int mtx_inp_elem(const char *prompt, MTX_ELEM_VAL *mev, const int dtype);
197
198 /* mtx_main.c */
199 MTX *mtx_init(const unsigned int order, const unsigned int elem_type, const unsigned int nx, const unsigned int ny, const unsigned int nz);
200 MTX *mtx_clr(MTX *mtx);
201 int mtx_free(MTX *mtx);
202 int mtx_elem_size(const int dt);
203 int mtx_check(const MTX *mtx, const char *func_name);
204
205 /* norm_ang.c */
206 double norm_ang(double theta);
207
208 /* simpson.c */
209 double simpson(const double xmin, const double xmax, const double *y, const int np);
210
211 /* xform.c */
212 void indent_mtx2(GRFMTX_2D m);
213 void xlat_mtx2(GRFMTX_2D m, const double x, const double y);
214 void scale_mtx2(GRFMTX_2D m, const double sx, const double sy);
215 void rot_mtx2(GRFMTX_2D m, const double theta);
216 void mult_mtx2(GRFMTX_2D m1, GRFMTX_2D m2, GRFMTX_2D result);
217 void xform_mtx2(GRFMTX_2D const m, double *x, double *y);
218 void rotate2d(double x[], double y[], int pts, double angle);
219 void xlat2d(double x[], double y[], int pts, double xoffset, double yoffset);
220 void scale2d(double x[], double y[], int pts, double xfact, double yfact);
221
222
223
224
225 #endif