Import Geant4 10.6.0.beta source tree
This commit is contained in:
@@ -19,6 +19,19 @@ committal in the CVS repository !
|
||||
History file for visualization/XXX sub-category (a template graphics system)
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
13 June 2019 John Allison (visXXX-V10-05-02)
|
||||
- Part of vis-V10-05-20.
|
||||
- Final changes for introduction of cloud drawing:
|
||||
o Follow change of accessor name: GetNumberOfCloudPoints.
|
||||
|
||||
10 June 2019 John Allison (visXXX-V10-05-01)
|
||||
- Part of vis-V10-05-19.
|
||||
- G4XXXSGViewer.cc and G4XXXStoredViewer.cc:
|
||||
Force kernel visit on change of number of cloud points.
|
||||
|
||||
18 March 2019 Gabriele Cosmo (visXXX-V10-05-00)
|
||||
- Corrected typo in comments.
|
||||
|
||||
25 April 2015 John Allison (visXXX-V10-04-00)
|
||||
- G4XXXStoredViewer::CompareForKernelVisit, G4XXXSGViewer::CompareForKernelVisit
|
||||
o Implement comparison for "colour by density".
|
||||
|
||||
@@ -97,7 +97,7 @@ void G4XXXSGSceneHandler::CreateCurrentItem(const G4String& /*header*/) {
|
||||
|
||||
// This call comes from a G4PhysicalVolumeModel. drawnPVPath is
|
||||
// the path of the current drawn (non-culled) volume in terms of
|
||||
// drawn (non-culled) ancesters. Each node is identified by a
|
||||
// drawn (non-culled) ancestors. Each node is identified by a
|
||||
// PVNodeID object, which is a physical volume and copy number. It
|
||||
// is a vector of PVNodeIDs corresponding to the geometry hierarchy
|
||||
// actually selected, i.e., not culled.
|
||||
|
||||
@@ -116,6 +116,7 @@ G4bool G4XXXSGViewer::CompareForKernelVisit(G4ViewParameters& lastVP)
|
||||
// Typical comparison. Taken from OpenGL.
|
||||
if (
|
||||
(lastVP.GetDrawingStyle () != fVP.GetDrawingStyle ()) ||
|
||||
(lastVP.GetNumberOfCloudPoints() != fVP.GetNumberOfCloudPoints()) ||
|
||||
(lastVP.IsAuxEdgeVisible () != fVP.IsAuxEdgeVisible ()) ||
|
||||
(lastVP.IsCulling () != fVP.IsCulling ()) ||
|
||||
(lastVP.IsCullingInvisible () != fVP.IsCullingInvisible ()) ||
|
||||
|
||||
@@ -114,6 +114,7 @@ G4bool G4XXXStoredViewer::CompareForKernelVisit(G4ViewParameters& lastVP)
|
||||
// Typical comparison. Taken from OpenGL.
|
||||
if (
|
||||
(lastVP.GetDrawingStyle () != fVP.GetDrawingStyle ()) ||
|
||||
(lastVP.GetNumberOfCloudPoints() != fVP.GetNumberOfCloudPoints()) ||
|
||||
(lastVP.IsAuxEdgeVisible () != fVP.IsAuxEdgeVisible ()) ||
|
||||
(lastVP.IsCulling () != fVP.IsCulling ()) ||
|
||||
(lastVP.IsCullingInvisible () != fVP.IsCullingInvisible ()) ||
|
||||
|
||||
Reference in New Issue
Block a user