Changeset 12511 for issm/trunk-jpl/src/c/objects/Vertex.cpp
- Timestamp:
- 06/22/12 11:30:03 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/objects/Vertex.cpp
r12365 r12511 64 64 void Vertex::Echo(void){ 65 65 66 printf("Vertex:\n");67 printf(" id: %i\n",id);68 printf(" sid: %i\n",sid);69 printf(" x: %g\n",x);70 printf(" y: %g\n",y);71 printf(" z: %g\n",z);72 printf(" sigma: %g\n",sigma);73 printf(" connectivity: %i\n",connectivity);74 printf(" dof: %i\n",dof);75 printf(" clone: %i\n",clone);66 _printLine_("Vertex:"); 67 _printLine_(" id: " << id); 68 _printLine_(" sid: " << sid); 69 _printLine_(" x: " << x); 70 _printLine_(" y: " << y); 71 _printLine_(" z: " << z); 72 _printLine_(" sigma: " << sigma); 73 _printLine_(" connectivity: " << connectivity); 74 _printLine_(" dof: " << dof); 75 _printLine_(" clone: " << clone); 76 76 77 77 return;
Note:
See TracChangeset
for help on using the changeset viewer.