Changeset 21629
- Timestamp:
- 03/23/17 16:17:46 (8 years ago)
- Location:
- issm/trunk-jpl/src/c/bamg
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/bamg/BamgQuadtree.cpp
r21625 r21629 7 7 8 8 namespace bamg { 9 9 10 #define ABS(i) ((i)<0 ?-(i) :(i)) 10 #define MAXDEPTH 30 11 #define MAXDEPTH 30 12 #define MAXISIZE 1073741824 //2^30 13 #define MAXICOORD 1073741823 //2^30 - 1 = =111...111 (29 times one) 14 11 15 /*DOCUMENTATION What is a BamgQuadtree? {{{ 12 16 * A Quadtree is a very simple way to group vertices according … … 61 65 62 66 /*Initialize fields*/ 63 this->MaxISize = 1073741824; //2^3064 this->MaxICoord = 1073741823; //2^30 - 165 67 this->NbQuadtreeBox = 0; 66 68 this->NbVertices = 0; … … 76 78 77 79 /*Initialize fields*/ 78 this->MaxISize = 1073741824; //2^3079 this->MaxICoord = 1073741823; //2^30 - 180 80 this->NbQuadtreeBox = 0; 81 81 this->NbVertices = 0; … … 88 88 89 89 /*Check Sizes*/ 90 _assert_( this->MaxISize>this->MaxICoord);90 _assert_(MAXISIZE>MAXICOORD); 91 91 92 92 /*Add all vertices of the mesh*/ … … 114 114 115 115 /*Initialize level*/ 116 long level=M axISize;116 long level=MAXISIZE; 117 117 118 118 /*Get inital box (the largest)*/ … … 236 236 if(!this->root->nbitems) return nearest_v; 237 237 238 /*Project coordinates (xi,yi) onto [0,M axICoord-1] x [0,MaxICoord-1]*/238 /*Project coordinates (xi,yi) onto [0,MAXICOORD-1] x [0,MAXICOORD-1]*/ 239 239 int xi2 = xi; 240 240 int yi2 = yi; 241 241 if(xi<0) xi2 = 0; 242 if(xi>M axISize) xi2 = MaxICoord;242 if(xi>MAXISIZE) xi2 = MAXICOORD; 243 243 if(yi<0) yi2 = 0; 244 if(yi>M axISize) yi2 = MaxICoord;244 if(yi>MAXISIZE) yi2 = MAXICOORD; 245 245 246 246 /*Get inital box (the largest)*/ … … 249 249 /*Initialize level and sizes for largest box*/ 250 250 int levelbin = (1L<<MAXDEPTH);// = 2^30 251 int h = this->MaxISize;252 int hb = this->MaxISize;251 int h = MAXISIZE; 252 int hb = MAXISIZE; 253 253 int i0 = 0; 254 254 int j0 = 0; … … 439 439 int l=0; // level 440 440 BamgQuadtreeBox* b; 441 int hb = M axISize;441 int hb = MAXISIZE; 442 442 int i0=0,j0=0; 443 443 -
issm/trunk-jpl/src/c/bamg/BamgQuadtree.h
r21625 r21629 37 37 38 38 /*BamgQuadtree public Fields*/ 39 int MaxICoord; // maximum integer coordinate 2^MaxDepth -140 int MaxISize; // maximum integer coordinate 2^MaxDepth41 39 BamgQuadtreeBox *root; // main box 42 40 long NbQuadtreeBox; // total number of boxes -
issm/trunk-jpl/src/c/bamg/Geometry.cpp
r21623 r21629 103 103 * coefIcoor = (2^30 -1)/D 104 104 */ 105 coefIcoor=(MaxICoor)/(Max(pmax.x-pmin.x,pmax.y-pmin.y)); 105 int MaxICoord = 1073741823; 106 coefIcoor=(MaxICoord)/(Max(pmax.x-pmin.x,pmax.y-pmin.y)); 106 107 if(coefIcoor<=0) _error_("coefIcoor should be positive"); 107 108 } … … 909 910 * coefIcoor = (2^30 -1)/D 910 911 */ 911 return I2( ( Icoor1) (coefIcoor*(P.x-pmin.x)) ,(Icoor1) (coefIcoor*(P.y-pmin.y)) );912 return I2( (int) (coefIcoor*(P.x-pmin.x)) ,(int) (coefIcoor*(P.y-pmin.y)) ); 912 913 }/*}}}*/ 913 914 void Geometry::UnMarkEdges() {/*{{{*/ -
issm/trunk-jpl/src/c/bamg/Geometry.h
r16237 r21629 31 31 Curve *curves; 32 32 R2 pmin,pmax; // domain extrema coordinates 33 double coefIcoor; // coef to integer Icoor1;33 double coefIcoor; // coef to integer coordinates; 34 34 double MaxCornerAngle; 35 35 -
issm/trunk-jpl/src/c/bamg/Mesh.cpp
r21623 r21629 1575 1575 1576 1576 //Build Gh.coefIcoor 1577 Gh.coefIcoor= (MaxICoor)/(Max(Gh.pmax.x-Gh.pmin.x,Gh.pmax.y-Gh.pmin.y)); 1577 int MaxICoord = 1073741823; //2^30 - 1 = =111...111 (29 times one) 1578 Gh.coefIcoor= (MaxICoord)/(Max(Gh.pmax.x-Gh.pmin.x,Gh.pmax.y-Gh.pmin.y)); 1578 1579 if (Gh.coefIcoor<=0){ 1579 1580 delete [] colorV; … … 1665 1666 //unset adj 1666 1667 for (i=0;i<nbt;i++){ 1667 for ( 1668 for (j=0;j<3;j++){ 1668 1669 triangles[i].SetAdj2(j,0,triangles[i].GetAllflag(j)); 1669 1670 } … … 2863 2864 double hx,hy; 2864 2865 vi.m.Box(hx,hy); 2865 Icoor1 hi=(Icoor1) (hx*coefIcoor),hj=(Icoor1) (hy*coefIcoor);2866 int hi=(int) (hx*coefIcoor),hj=(int) (hy*coefIcoor); 2866 2867 if(!quadtree->TooClose(&vi,seuil,hi,hj)){ 2867 2868 // a good new point … … 3036 3037 } 3037 3038 /*}}}*/ 3038 BamgVertex* Mesh::NearestVertex( Icoor1 i,Icoor1j) {/*{{{*/3039 BamgVertex* Mesh::NearestVertex(int i,int j) {/*{{{*/ 3039 3040 /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Mesh2.cpp/NearestVertex)*/ 3040 3041 return quadtree->NearestVertex(i,j); … … 3695 3696 3696 3697 //Compute coefIcoor 3697 coefIcoor= (MaxICoor)/(Max(pmax.x-pmin.x,pmax.y-pmin.y)); 3698 int MaxICoord = 1073741823; //2^30 - 1 = =111...111 (29 times one) 3699 coefIcoor= (MaxICoord)/(Max(pmax.x-pmin.x,pmax.y-pmin.y)); 3698 3700 if (coefIcoor<=0){ 3699 3701 _error_("coefIcoor should be positive, a problem in the geometry is likely"); … … 3925 3927 /*}}}*/ 3926 3928 I2 Mesh::R2ToI2(const R2 & P) const {/*{{{*/ 3927 return I2( ( Icoor1) (coefIcoor*(P.x-pmin.x)),(Icoor1) (coefIcoor*(P.y-pmin.y)) );3929 return I2( (int) (coefIcoor*(P.x-pmin.x)),(int) (coefIcoor*(P.y-pmin.y)) ); 3928 3930 } 3929 3931 /*}}}*/ -
issm/trunk-jpl/src/c/bamg/Mesh.h
r21623 r21629 102 102 long GetId(const Edge & t) const; 103 103 long GetId(const Edge * t) const; 104 BamgVertex* NearestVertex( Icoor1 i,Icoor1j) ;104 BamgVertex* NearestVertex(int i,int j) ; 105 105 Triangle* TriangleFindFromCoord(const I2 & ,Icoor2 [3],Triangle *tstart=0) const; 106 106 void ReadMesh(int* index,double* x,double* y,int nods,int nels); -
issm/trunk-jpl/src/c/bamg/macros.h
r12934 r21629 19 19 static const short NextVertex[3] = {1,2,0}; 20 20 static const short PreviousVertex[3] = {2,0,1}; 21 const Icoor1 MaxICoor = 1073741823; // 2^30-1 =111...111 (29 times one)22 21 } 23 22
Note:
See TracChangeset
for help on using the changeset viewer.