Ignore:
Timestamp:
Nov 9, 2007, 3:32:25 PM (17 years ago)
Author:
garnier
Message:

r627@mac-90108: laurentgarnier | 2007-11-09 07:57:42 +0100
modif dans les includes directives

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/geant4/visualization/management/include/G4VisCommandsGeometrySet.hh

    r531 r593  
    2525//
    2626//
    27 // $Id: G4VisCommandsGeometrySet.hh,v 1.2 2006/06/29 21:28:36 gunter Exp $
    28 // GEANT4 tag $Name: geant4-08-01-patch-01 $
     27// $Id: G4VisCommandsGeometrySet.hh,v 1.3 2007/01/05 16:24:19 allison Exp $
     28// GEANT4 tag $Name: geant4-09-00-ref-01 $
    2929
    3030// /vis/geometry commands - John Allison  31st January 2006
     
    8080private:
    8181  G4bool fForceAuxEdgeVisible;
     82};
     83
     84class G4VisCommandGeometrySetForceLineSegmentsPerCircleFunction:
     85  public G4VVisCommandGeometrySetFunction {
     86public:
     87  G4VisCommandGeometrySetForceLineSegmentsPerCircleFunction
     88  (G4int lineSegmentsPerCircle):
     89    fLineSegmentsPerCircle(lineSegmentsPerCircle) {}
     90  void operator()
     91    (G4VisAttributes* visAtts) const
     92  {visAtts->SetForceLineSegmentsPerCircle(fLineSegmentsPerCircle);}
     93private:
     94  G4int fLineSegmentsPerCircle;
    8295};
    8396
     
    212225};
    213226
     227class G4VisCommandGeometrySetForceLineSegmentsPerCircle:
     228  public G4VVisCommandGeometrySet {
     229public:
     230  G4VisCommandGeometrySetForceLineSegmentsPerCircle ();
     231  virtual ~G4VisCommandGeometrySetForceLineSegmentsPerCircle ();
     232  G4String GetCurrentValue (G4UIcommand* command);
     233  void SetNewValue (G4UIcommand* command, G4String newValue);
     234private:
     235  G4VisCommandGeometrySetForceLineSegmentsPerCircle
     236  (const G4VisCommandGeometrySetForceLineSegmentsPerCircle&);
     237  G4VisCommandGeometrySetForceLineSegmentsPerCircle& operator=
     238  (const G4VisCommandGeometrySetForceLineSegmentsPerCircle&);
     239  G4UIcommand* fpCommand;
     240};
     241
    214242class G4VisCommandGeometrySetForceWireframe:
    215243  public G4VVisCommandGeometrySet {
Note: See TracChangeset for help on using the changeset viewer.