17 lines
328 B
C
17 lines
328 B
C
|
/*
|
||
|
Program to calculate gyz 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, "tessgyz", &tess_gyz,
|
||
|
TESSEROID_GYZ_SIZE_RATIO);
|
||
|
}
|