ResInsight/ThirdParty/Ert/applications/polygon_test.c
2017-06-22 11:51:46 +02:00

16 lines
309 B
C

#include <stdlib.h>
#include <geo_surface.h>
#include <geo_polygon.h>
#include <stdbool.h>
#include <util.h>
int main( int argc , char ** argv) {
const char * irap_file = "polygontest.irap";
geo_polygon_type * polygon = geo_polygon_fload_alloc_irap( irap_file );
geo_polygon_free( polygon );
}