Ignore:
Timestamp:
Apr 23, 2008, 3:28:50 PM (16 years ago)
Author:
garnier
Message:

r815@wl-72126: garnier | 2008-04-23 15:28:34 +0200
maj par rapport au CVS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/geant4/visualization/OpenGL/src/G4OpenGLSceneHandler.cc

    r754 r789  
    2525//
    2626//
    27 // $Id: G4OpenGLSceneHandler.cc,v 1.53 2008/02/01 06:26:45 allison Exp $
     27// $Id: G4OpenGLSceneHandler.cc,v 1.54 2008/04/04 13:32:22 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    736736  u_knot_array = u_knot_array_ptr = new GLfloat [nurb.GetnbrKnots(G4NURBS::U)];
    737737  G4NURBS::KnotsIterator u_iterator (nurb, G4NURBS::U);
    738   while (u_iterator.pick (u_knot_array_ptr++));
     738  while (u_iterator.pick (u_knot_array_ptr++)){}
    739739
    740740  GLfloat *v_knot_array, *v_knot_array_ptr;
    741741  v_knot_array = v_knot_array_ptr = new GLfloat [nurb.GetnbrKnots(G4NURBS::V)];
    742742  G4NURBS::KnotsIterator v_iterator (nurb, G4NURBS::V);
    743   while (v_iterator.pick (v_knot_array_ptr++));
     743  while (v_iterator.pick (v_knot_array_ptr++)){}
    744744
    745745  GLfloat *ctrl_pnt_array, *ctrl_pnt_array_ptr;
     
    747747    new GLfloat [nurb.GettotalnbrCtrlPts () * G4NURBS::NofC];
    748748  G4NURBS::CtrlPtsCoordsIterator c_p_iterator (nurb);
    749   while (c_p_iterator.pick (ctrl_pnt_array_ptr++));
     749  while (c_p_iterator.pick (ctrl_pnt_array_ptr++)){}
    750750
    751751  // Get vis attributes - pick up defaults if none.
Note: See TracChangeset for help on using the changeset viewer.