Changeset 12509 for issm/trunk-jpl/src/c/objects/Bamg/Edge.cpp
- Timestamp:
- 06/22/12 11:21:55 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/objects/Bamg/Edge.cpp
r12493 r12509 26 26 /*FUNCTION Edge::Echo {{{*/ 27 27 void Edge::Echo(void){ 28 printf("Edge:\n");29 printf(" pointers towards two vertices: %p %p\n",v[0],v[1]);30 printf(" ReferenceNumber = %i\n",ReferenceNumber);31 printf(" GeomEdgeHook = %p\n",GeomEdgeHook);32 printf(" two adjacent edges on the same curve: %p %p\n",adj[0],adj[1]);28 _printLine_("Edge:"); 29 _printLine_(" pointers towards two vertices: " << v[0] << " " << v[1]); 30 _printLine_(" ReferenceNumber = " << ReferenceNumber); 31 _printLine_(" GeomEdgeHook = " << GeomEdgeHook); 32 _printLine_(" two adjacent edges on the same curve: " << adj[0] << " " << adj[1]); 33 33 } 34 34 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.