/*!\file: TriMeshProcessRifts.cpp * \brief split a mesh where a rift (or fault) is present */ #include "./TriMeshProcessRifts.h" void mexFunction( int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[] ) { /*Matlab arrays: */ mxArray* pmxa_array=NULL; mxArray* pmxa_array2=NULL; mxArray* pmxa_array3=NULL; int i,j,k,counter; /* returned quantities: */ int out_numrifts; int* out_riftsnumsegments=NULL; double** out_riftssegments=NULL; int* out_riftsnumpairs=NULL; double** out_riftspairs=NULL; double* out_riftstips=NULL; double** out_riftspenaltypairs=NULL; int* out_riftsnumpenaltypairs=NULL; /*empty rifts structure: */ double* pNaN=NULL; const char* fnames[10]; mwSize ndim=2; mwSize dimensions[2] = {1,1}; double* pair=NULL; /* input: */ double* tindex_in=NULL; double* index_in=NULL; int nel; double* x_inm=NULL; //matlab vector double* x_in=NULL; //copy of matlab vector int nods; double* y_inm=NULL;//matlab vector double* y_in=NULL;//copy of matlab vector double* tsegments_in=NULL; double* segments_in=NULL; double* tsegmentmarkers_in=NULL; double* segmentmarkers_in=NULL; /* state: */ double* state=NULL; int num_seg; /*rifts: */ int riftflag; int numrifts; /* verify correct usage: */ if (nlhs==0 && nrhs==0) { /* special case: */ TriMeshProcessRiftsUsage(); return; } if (!( (nlhs==6) || (nrhs==5))){ mexPrintf(" %s format error.\n", __FUNCT__); TriMeshProcessRiftsUsage(); _error_("bad usage"); } /*Fetch index_in: */ if(mxIsDouble(prhs[0])){ nel=mxGetM(prhs[0]); tindex_in=mxGetPr(prhs[0]); index_in=(double*)xmalloc(nel*3*sizeof(double)); for (i=0;i