Example showing how to insert points to existing path.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
int main()
{
int i;
int ndata, ndata_insert, nindexes;
double *xydata, *xydata_inserted;
int *indexes;
xydata = malloc(2*ndata * sizeof(double));
xydata_inserted = malloc(2*ndata_insert * sizeof(double));
indexes = malloc(nindexes * sizeof(double));
FILE* fp = fopen("scan_path_insert_in.txt", "wt");
if (fp == NULL) {
printf("Error. Unable to open file for writing %s \n", strerror(errno));
return 0;
}
for (i = 0; i < ndata; i++)
fprintf(fp, "%d %g %g\n", i, xydata[2*i], xydata[2*i + 1]);
fclose(fp);
fp = fopen("scan_path_insert_out.txt", "wt");
if (fp == NULL) {
printf("Error. Unable to open file for writing %s \n", strerror(errno));
return 0;
}
for (i = 0; i < ndata_insert; i++)
fprintf(fp, "%d %g %g\n", i, xydata_inserted[2*i], xydata_inserted[2*i + 1]);
fclose(fp);
free(xydata);
free(xydata_inserted);
free(indexes);
return 0;
}