Skip to content
Snippets Groups Projects
Commit ad622af1 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

clean-up

parent e2094021
No related branches found
No related tags found
No related merge requests found
// $Id: Post.cpp,v 1.20 2001-07-31 06:02:56 geuzaine Exp $ // $Id: Post.cpp,v 1.21 2001-07-31 06:11:24 geuzaine Exp $
#include "Gmsh.h" #include "Gmsh.h"
#include "GmshUI.h" #include "GmshUI.h"
...@@ -274,8 +274,7 @@ void Draw_Post (void) { ...@@ -274,8 +274,7 @@ void Draw_Post (void) {
if(v->NbST && v->DrawTriangles && v->DrawScalars){ if(v->NbST && v->DrawTriangles && v->DrawScalars){
nb = List_Nbr(v->ST) / v->NbST ; nb = List_Nbr(v->ST) / v->NbST ;
if(v->Light && v->SmoothNormals && v->IntervalsType != DRAW_POST_ISO){ if(v->Light && v->SmoothNormals && v->Changed && v->IntervalsType != DRAW_POST_ISO){
if(v->Changed){
Msg(DEBUG, "Preprocessing of triangle normals in view %d", v->Num); Msg(DEBUG, "Preprocessing of triangle normals in view %d", v->Num);
for(i = 0 ; i < List_Nbr(v->ST) ; i+=nb) for(i = 0 ; i < List_Nbr(v->ST) ; i+=nb)
Draw_ScalarTriangle(v, 1, ValMin, ValMax, Raise, Draw_ScalarTriangle(v, 1, ValMin, ValMax, Raise,
...@@ -291,15 +290,6 @@ void Draw_Post (void) { ...@@ -291,15 +290,6 @@ void Draw_Post (void) {
(double*)List_Pointer_Fast(v->ST,i+6), (double*)List_Pointer_Fast(v->ST,i+6),
(double*)List_Pointer_Fast(v->ST,i+9)); (double*)List_Pointer_Fast(v->ST,i+9));
} }
else{
for(i = 0 ; i < List_Nbr(v->ST) ; i+=nb)
Draw_ScalarTriangle(v, 0, ValMin, ValMax, Raise,
(double*)List_Pointer_Fast(v->ST,i),
(double*)List_Pointer_Fast(v->ST,i+3),
(double*)List_Pointer_Fast(v->ST,i+6),
(double*)List_Pointer_Fast(v->ST,i+9));
}
}
if(v->NbVT && v->DrawTriangles && v->DrawVectors){ if(v->NbVT && v->DrawTriangles && v->DrawVectors){
nb = List_Nbr(v->VT) / v->NbVT ; nb = List_Nbr(v->VT) / v->NbVT ;
for(i = 0 ; i < List_Nbr(v->VT) ; i+=nb) for(i = 0 ; i < List_Nbr(v->VT) ; i+=nb)
...@@ -323,8 +313,7 @@ void Draw_Post (void) { ...@@ -323,8 +313,7 @@ void Draw_Post (void) {
if(v->NbSS && v->DrawTetrahedra && v->DrawScalars){ if(v->NbSS && v->DrawTetrahedra && v->DrawScalars){
nb = List_Nbr(v->SS) / v->NbSS ; nb = List_Nbr(v->SS) / v->NbSS ;
if(v->Light && v->SmoothNormals && v->IntervalsType != DRAW_POST_ISO){ if(v->Light && v->SmoothNormals && v->Changed && v->IntervalsType != DRAW_POST_ISO){
if(v->Changed){
Msg(DEBUG, "Preprocessing of tets normals in view %d", v->Num); Msg(DEBUG, "Preprocessing of tets normals in view %d", v->Num);
for(i = 0 ; i < List_Nbr(v->SS) ; i+=nb) for(i = 0 ; i < List_Nbr(v->SS) ; i+=nb)
Draw_ScalarTetrahedron(v, 1, ValMin, ValMax, Raise, Draw_ScalarTetrahedron(v, 1, ValMin, ValMax, Raise,
...@@ -340,15 +329,6 @@ void Draw_Post (void) { ...@@ -340,15 +329,6 @@ void Draw_Post (void) {
(double*)List_Pointer_Fast(v->SS,i+8), (double*)List_Pointer_Fast(v->SS,i+8),
(double*)List_Pointer_Fast(v->SS,i+12)); (double*)List_Pointer_Fast(v->SS,i+12));
} }
else{
for(i = 0 ; i < List_Nbr(v->SS) ; i+=nb)
Draw_ScalarTetrahedron(v, 0, ValMin, ValMax, Raise,
(double*)List_Pointer_Fast(v->SS,i),
(double*)List_Pointer_Fast(v->SS,i+4),
(double*)List_Pointer_Fast(v->SS,i+8),
(double*)List_Pointer_Fast(v->SS,i+12));
}
}
if(v->NbVS && v->DrawTetrahedra && v->DrawVectors){ if(v->NbVS && v->DrawTetrahedra && v->DrawVectors){
nb = List_Nbr(v->VS) / v->NbVS ; nb = List_Nbr(v->VS) / v->NbVS ;
for(i = 0 ; i < List_Nbr(v->VS) ; i+=nb) for(i = 0 ; i < List_Nbr(v->VS) ; i+=nb)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment