Changeset 932 for trunk/source/graphics_reps/src
- Timestamp:
- Feb 26, 2009, 12:23:33 PM (17 years ago)
- Location:
- trunk/source/graphics_reps/src
- Files:
-
- 3 edited
-
G4PolyhedronArbitrary.cc (modified) (2 diffs)
-
G4VMarker.cc (modified) (2 diffs)
-
G4VVisManager.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/graphics_reps/src/G4PolyhedronArbitrary.cc
r830 r932 18 18 // * This code implementation is the result of the scientific and * 19 19 // * technical work of the GEANT4 collaboration and of QinetiQ Ltd, * 20 // * subject DEFCON 705 IPR conditions.*20 // * subject to DEFCON 705 IPR conditions. * 21 21 // * By using, copying, modifying or distributing the software (or * 22 22 // * any work based on the software) you agree to acknowledge its * … … 24 24 // * acceptance of all terms of the Geant4 Software license. * 25 25 // ******************************************************************** 26 // 26 27 // 27 28 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -
trunk/source/graphics_reps/src/G4VMarker.cc
r850 r932 25 25 // 26 26 // 27 // $Id: G4VMarker.cc,v 1.1 1 2006/06/29 19:07:21 gunterExp $28 // GEANT4 tag $Name: HEAD$27 // $Id: G4VMarker.cc,v 1.12 2009/02/24 10:58:04 allison Exp $ 28 // GEANT4 tag $Name: greps-V09-02-00 $ 29 29 // 30 30 // … … 86 86 } 87 87 88 const G4String& G4VMarker::GetInfo() const { return fInfo ;} 88 G4VMarker::SizeType G4VMarker::GetSizeType () const { 89 SizeType type = none; 90 if (fWorldSize) type = world; 91 else if (fScreenSize) type = screen; 92 return type; 93 } 89 94 90 void G4VMarker::SetInfo( const G4String& info ){ fInfo = info ;} 91 95 void G4VMarker::SetSize (SizeType sizeType, G4double size) { 96 fWorldSize = fScreenSize = 0.; 97 if (sizeType == world) fWorldSize = size; 98 else if (sizeType == screen) fScreenSize = size; 99 } -
trunk/source/graphics_reps/src/G4VVisManager.cc
r850 r932 40 40 G4VVisManager* G4VVisManager::GetConcreteInstance () 41 41 { 42 printf("G4VVisManager::GetConcreteInstance %d\n",fpConcreteInstance); 42 43 return fpConcreteInstance; 43 44 }
Note:
See TracChangeset
for help on using the changeset viewer.
