Ignore:
Timestamp:
04/05/12 14:48:35 (13 years ago)
Author:
Eric.Larour
Message:

New FetchData and WriteData interface

Location:
issm/trunk-jpl/src/mex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/mex

    • Property svn:ignore
      •  

        old new  
         1__pycache__
        12Makefile
        23.ignore.txt
  • issm/trunk-jpl/src/mex/MeshProfileIntersection/MeshProfileIntersection.cpp

    r11321 r11933  
    5353        /*Fetch inputs: */
    5454        //index
    55         FetchMatlabData(&double_index,&nel,&dummy,INDEX);
     55        FetchData(&double_index,&nel,&dummy,INDEX);
    5656        if(dummy!=3 && dummy!=6)_error_(" element triangulation should be of 3 or 6 column width!");
    5757        index=(int*)xmalloc(nel*3*sizeof(int));
     
    6262        }
    6363        //x and y
    64         FetchMatlabData(&x,&nods,X);
    65         FetchMatlabData(&y,&dummy,Y);
     64        FetchData(&x,&nods,X);
     65        FetchData(&y,&dummy,Y);
    6666
    6767        //contours
     
    9494
    9595        /* output: */
    96         WriteMatlabData(SEGMENTS,segments,numsegs,5);
     96        WriteData(SEGMENTS,segments,numsegs,5);
    9797
    9898        /*end module: */
Note: See TracChangeset for help on using the changeset viewer.