void VNO(double *v0,double *v1){ //Vektornormierung register int i; double temp = VBG(v0) ; for(i=0;i<3;i++){ *(v1+i) = *(v0+i) / temp; }; return ; }