/* * \file Contours.cpp * \brief: Implementation of Contours class, derived from DataSet class. */ /*Headers: {{{*/ #ifdef HAVE_CONFIG_H #include #else #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" #endif #include "./Contours.h" #include "../shared/shared.h" #include "./Contour.h" using namespace std; /*}}}*/ /*Object constructors and destructor*/ Contours::Contours(){/*{{{*/ enum_type=ContoursEnum; return; } /*}}}*/ Contours::~Contours(){/*{{{*/ return; } /*}}}*/ /*Numerics: */ int ExpWrite(Contours* contours,char* domainname){/*{{{*/ /*I/O: */ FILE* fid=NULL; Contour* contour = NULL; /*open domain outline file for writing: */ if((fid=fopen(domainname,"w"))==NULL) _error_("could not open domain file " << domainname); int counter = 0; for(Object* & object : contours->objects){ contour=(Contour*)object; /*Write header: */ fprintf(fid,"## Name:%s\n",domainname); fprintf(fid,"## Icon:0\n"); fprintf(fid,"# Points Count Value\n"); fprintf(fid,"%u %s\n",contour->nods ,"1."); fprintf(fid,"# X pos Y pos\n"); /*Write vertices: */ for(int i=0;inods;i++){ fprintf(fid,"%lf\t%lf\n",contour->x[i],contour->y[i]); } /*Write blank line: */ if(counterSize()-1) fprintf(fid,"\n"); counter++; } /*close Exp file: */ fclose(fid); return 1; }/*}}}*/