17 lines
324 B
C
17 lines
324 B
C
|
/*
|
||
|
Program to calculate gy of a tesseroid model on a set of points.
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "../lib/constants.h"
|
||
|
#include "../lib/grav_tess.h"
|
||
|
#include "../lib/tessg_main.h"
|
||
|
|
||
|
|
||
|
/** Main */
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
return run_tessg_main(argc, argv, "tessgy", &tess_gy,
|
||
|
TESSEROID_GY_SIZE_RATIO);
|
||
|
}
|