1 |
gezelter |
115 |
/** |
2 |
|
|
* @file shapes_module.h |
3 |
|
|
* @author Dan Gezelter |
4 |
|
|
* @date 10/19/2004 |
5 |
|
|
* @version 1.0 |
6 |
|
|
*/ |
7 |
|
|
|
8 |
|
|
#ifndef USETHEFORCE_DARKSIDE_SHAPES_INTERFACE_H |
9 |
|
|
#define USETHEFORCE_DARKSIDE_SHAPES_INTERFACE_H |
10 |
|
|
|
11 |
|
|
#define __C |
12 |
|
|
|
13 |
|
|
#include "config.h" |
14 |
|
|
|
15 |
chuckv |
124 |
#define makeShape F90_FUNC(makeshape, MAKESHAPE) |
16 |
chrisfen |
154 |
#define completeShapeFF F90_FUNC(completeshapeff, COMPLETESHAPEFF) |
17 |
chuckv |
124 |
|
18 |
gezelter |
115 |
#define SH_COS 0 |
19 |
|
|
#define SH_SIN 1 |
20 |
|
|
|
21 |
|
|
extern "C" { |
22 |
|
|
|
23 |
|
|
void makeShape(int* nContactFuncs, |
24 |
|
|
int* ContactFuncLValue, |
25 |
|
|
int* ContactFuncMValue, |
26 |
|
|
int* ContactFunctionType, |
27 |
|
|
double* ContactFuncCoefficient, |
28 |
|
|
int* nRangeFuncs, |
29 |
|
|
int* RangeFuncLValue, |
30 |
|
|
int* RangeFuncMValue, |
31 |
|
|
int* RangeFunctionType, |
32 |
|
|
double* RangeFuncCoefficient, |
33 |
|
|
int* nStrengthFuncs, |
34 |
|
|
int* StrengthFuncLValue, |
35 |
|
|
int* StrengthFuncMValue, |
36 |
|
|
int* StrengthFunctionType, |
37 |
|
|
double* StrengthFuncCoefficient, |
38 |
|
|
int* myAtid, |
39 |
chuckv |
124 |
int* status); |
40 |
chrisfen |
154 |
|
41 |
|
|
void completeShapeFF( int* status); |
42 |
gezelter |
115 |
} |
43 |
|
|
|
44 |
|
|
#endif |