Ignore:
Timestamp:
05/26/14 21:40:16 (11 years ago)
Author:
Mathieu Morlighem
Message:

DEL: removed all FUNCTIONs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/bamg/ListofIntersectionTriangles.cpp

    r17507 r18064  
    1111
    1212        /*Constructors Destructors*/
    13         /*FUNCTION ListofIntersectionTriangles::ListofIntersectionTriangles{{{*/
    14         ListofIntersectionTriangles::ListofIntersectionTriangles(int n,int m)
     13        ListofIntersectionTriangles::ListofIntersectionTriangles(int n,int m)/*{{{*/
    1514          : MaxSize(n), Size(0), len(-1),state(-1),lIntTria(new IntersectionTriangles[n]) ,
    1615          NbSeg(0), MaxNbSeg(m), lSegsI(new SegInterpolation[m]){
    1716          }
    1817        /*}}}*/
    19         /*FUNCTION ListofIntersectionTriangles::~ListofIntersectionTriangles{{{*/
    20         ListofIntersectionTriangles::~ListofIntersectionTriangles(){
     18        ListofIntersectionTriangles::~ListofIntersectionTriangles(){/*{{{*/
    2119                if (lIntTria) delete [] lIntTria,lIntTria=0;
    2220                if (lSegsI) delete [] lSegsI,lSegsI=0;
     
    2523
    2624        /*Methods*/
    27         /*FUNCTION ListofIntersectionTriangles::Init{{{*/
    28         void ListofIntersectionTriangles::Init(void){
     25        void ListofIntersectionTriangles::Init(void){/*{{{*/
    2926                state=0;
    3027                len=0;
     
    3229        }
    3330        /*}}}*/
    34         /*FUNCTION ListofIntersectionTriangles::Length{{{*/
    35         double  ListofIntersectionTriangles::Length(){
     31        double  ListofIntersectionTriangles::Length(){/*{{{*/
    3632                /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Mesh2.cpp/Length)*/
    3733
     
    7975        }
    8076        /*}}}*/
    81         /*FUNCTION ListofIntersectionTriangles::NewItem(Triangle * tt,double d0,double d1,double d2) {{{*/
    82         int  ListofIntersectionTriangles::NewItem(Triangle * tt,double d0,double d1,double d2) {
     77        int  ListofIntersectionTriangles::NewItem(Triangle * tt,double d0,double d1,double d2) { /*{{{*/
    8378                /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Mesh2.cpp/NewItem)*/
    8479
     
    107102        }
    108103        /*}}}*/
    109         /*FUNCTION ListofIntersectionTriangles::NewItem(R2 A,const Metric & mm){{{*/
    110         int ListofIntersectionTriangles::NewItem(R2 A,const Metric & mm) {
     104        int ListofIntersectionTriangles::NewItem(R2 A,const Metric & mm) {/*{{{*/
    111105                /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Mesh2.cpp/NewItem)*/
    112106
     
    123117        }
    124118        /*}}}*/
    125         /*FUNCTION ListofIntersectionTriangles::NewPoints{{{*/
    126         long ListofIntersectionTriangles::NewPoints(BamgVertex* vertices,long &nbv,long maxnbv){
     119        long ListofIntersectionTriangles::NewPoints(BamgVertex* vertices,long &nbv,long maxnbv){/*{{{*/
    127120                /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Mesh2.cpp/NewPoints)*/
    128121
     
    180173        }
    181174        /*}}}*/
    182         /*FUNCTION ListofIntersectionTriangles::ReShape{{{*/
    183         void ListofIntersectionTriangles::ReShape(){
     175        void ListofIntersectionTriangles::ReShape(){ /*{{{*/
    184176
    185177                int newsize = MaxSize*2;
     
    196188        }
    197189        /*}}}*/
    198         /*FUNCTION ListofIntersectionTriangles::SplitEdge{{{*/
    199         void ListofIntersectionTriangles::SplitEdge(const Mesh & Bh, const R2 &A,const R2  &B,int nbegin) {
     190        void ListofIntersectionTriangles::SplitEdge(const Mesh & Bh, const R2 &A,const R2  &B,int nbegin) {/*{{{*/
    200191                /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Mesh2.cpp/ListofIntersectionTriangles)*/
    201192
Note: See TracChangeset for help on using the changeset viewer.