Ignore:
Timestamp:
08/27/10 08:37:12 (15 years ago)
Author:
Mathieu Morlighem
Message:

As usual

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Bamg/Triangle.cpp

    r5460 r5605  
    259259        /*FUNCTION Triangle::SetAdj2{{{1*/
    260260        void Triangle::SetAdj2(short a,Triangle *t,short aat){
    261                 adj[a]=t;    //the adjacent triangle to the edge a is t
    262                 AdjEdgeIndex[a]=aat; //position of the edge in the adjacent triangle
    263                 if(t) { //if t!=NULL add adjacent triangle to t (this)
     261                /*For current triangle:
     262                 * - a is the index of the edge were the adjency is set (in [0 2])
     263                 * - t is the adjacent triangle
     264                 * - aat is the index of the same edge in the adjacent triangle*/
     265                adj[a]=t;
     266                AdjEdgeIndex[a]=aat;
     267                if(t){ //if t!=NULL add adjacent triangle to t (this)
    264268                        t->adj[aat]=this;
    265269                        t->AdjEdgeIndex[aat]=a;
Note: See TracChangeset for help on using the changeset viewer.