Changeset 20500 for issm/trunk/src/c/classes/Vertex.h
- Timestamp:
- 04/12/16 21:32:01 (9 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:ignore
-
old new 1 build-js 2 build-esmf 3 build-gcm 1 4 build-fw 2 5 build-ad
-
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 19104,19106-19126,19128-19134,19136-19170,19172-19299,19302,19306-19405,19407-19604,19606-19668,19670-20496
- Property svn:ignore
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/c/classes/Vertex.h
r17806 r20500 28 28 IssmDouble y; 29 29 IssmDouble z; 30 IssmDouble latitute; 31 IssmDouble longitude; 32 IssmDouble R; 30 33 IssmDouble sigma; //sigma coordinate: (z-bed)/thickness 31 34 int connectivity; //number of vertices connected to this vertex … … 42 45 int ObjectEnum(); 43 46 Object* copy(); 47 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction); 48 44 49 /*}}}*/ 45 50 /*Vertex management:*/ … … 50 55 IssmDouble GetY(void); 51 56 IssmDouble GetZ(void); 57 IssmDouble GetLatitude(void); 58 IssmDouble GetLongitude(void); 59 IssmDouble GetRadius(void); 52 60 void UpdatePosition(Vector<IssmDouble>* vx,Vector<IssmDouble>* vy,Vector<IssmDouble>* vz,Parameters* parameters,IssmDouble* thickness,IssmDouble* bed); 53 61 void DistributePids(int* ppidcount); … … 57 65 void SetClone(int* minranks); 58 66 void ToXYZ(Matrix<IssmDouble>* matrix); 59 void VertexCoordinates(Vector<IssmDouble>* vx,Vector<IssmDouble>* vy,Vector<IssmDouble>* vz );67 void VertexCoordinates(Vector<IssmDouble>* vx,Vector<IssmDouble>* vy,Vector<IssmDouble>* vz,bool spherical=false); 60 68 }; 61 69 62 70 /*Methods relating to Vertex object: */ 63 void GetVerticesCoordinates(IssmDouble* xyz,Vertex** vertices, int numvertices );71 void GetVerticesCoordinates(IssmDouble* xyz,Vertex** vertices, int numvertices,bool spherical=false); 64 72 65 73 #endif /* _VERTEX_H */
Note:
See TracChangeset
for help on using the changeset viewer.