Ignore:
Timestamp:
05/07/13 16:19:58 (12 years ago)
Author:
Eric.Larour
Message:

CHG: de-entangle dependencies between Containers and shared/Elements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/objects/Vertex.cpp

    r14917 r14951  
    238238}
    239239/*}}}*/
     240
     241/*Methods relating to Vertex, but not internal methods: */
     242void GetVerticesCoordinates(IssmDouble* xyz,Vertex** vertices, int numvertices){ /*{{{*/
     243
     244        _assert_(vertices);
     245        _assert_(xyz);
     246
     247        for(int i=0;i<numvertices;i++) {
     248                xyz[i*3+0]=vertices[i]->GetX();
     249                xyz[i*3+1]=vertices[i]->GetY();
     250                xyz[i*3+2]=vertices[i]->GetZ();
     251        }
     252}/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.