Go to the documentation of this file.00001
00002
00003 #include "arith.h"
00004
00005 face(linetab,mi,m,r,n)
00006 LINE linetab[MAXEDGE];
00007 int mi,m,r,n;
00008 {
00009 register int i,j,k,l,count;
00010 register unsigned int planework;
00011
00012
00013 for(i=mi; i<m; i++){
00014 l=1;
00015 for(j=mi; j<m; j++){
00016 if(i != j){
00017 planework= linetab[i].plane & linetab[j].plane;
00018 count=0;
00019 for(k=0; k<n; k++){
00020 if((planework & (1<<k)) != 0)
00021 count += 1;
00022 }
00023
00024 if(count == (r-2)){
00025 linetab[i].face[l]=j;
00026 l += 1;
00027 }
00028 }
00029 }
00030
00031 linetab[i].face[l]=EMPTY;
00032 }
00033 }
00034