Changeset 23285
- Timestamp:
- 09/14/18 20:19:12 (7 years ago)
- Location:
- issm/trunk-jpl/src/c/modules
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/CoordinateSystemTransformx/CoordinateSystemTransformx.cpp
r22498 r23285 9 9 #include <proj_api.h> 10 10 11 void CoordinateSystemTransformx( IssmDouble** px_dest,IssmDouble** py_dest,IssmDouble* x_src,IssmDouble* y_src,int size,const char* str_src,const char* str_dst){11 void CoordinateSystemTransformx(double** px_dest,double** py_dest,double* x_src,double* y_src,int size,const char* str_src,const char* str_dst){ 12 12 13 13 #if !defined(_HAVE_PROJ4_) … … 17 17 /*Allocate output and initialize values as src*/ 18 18 _assert_(size>0); 19 IssmDouble* x_dest = xNew<IssmDouble>(size);20 IssmDouble* y_dest = xNew<IssmDouble>(size);19 double* x_dest = xNew<double>(size); 20 double* y_dest = xNew<double>(size); 21 21 for(int i=0;i<size;i++){ 22 22 x_dest[i] = x_src[i]; -
issm/trunk-jpl/src/c/modules/CoordinateSystemTransformx/CoordinateSystemTransformx.h
r18801 r23285 8 8 9 9 /* local prototypes: */ 10 void CoordinateSystemTransformx( IssmDouble** px_dest,IssmDouble** py_dest,IssmDouble* x_src,IssmDouble* y_src,int size,const char* str_src,const char* str_dst);10 void CoordinateSystemTransformx(double** px_dest,double** py_dest,double* x_src,double* y_src,int size,const char* str_src,const char* str_dst); 11 11 #endif -
issm/trunk-jpl/src/c/modules/ModelProcessorx/CreateNodes.cpp
r23167 r23285 32 32 for(j=0;j<3;j++){ 33 33 if(my_nodes[3*i+j]){ 34 nodes->AddObject(new Node(id0+3*i+j+1,id0+3*i+j,lid++,iomodel->elements[ +3*i+j]-1,iomodel,analysis,approximation));34 nodes->AddObject(new Node(id0+3*i+j+1,id0+3*i+j,lid++,iomodel->elements[3*i+j]-1,iomodel,analysis,approximation)); 35 35 36 36 }
Note:
See TracChangeset
for help on using the changeset viewer.