1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-08 14:17:06 +03:00

0025036: Compilation errors in occt qt Voxel sample

Graphic3d_CBounds was replaced by Graphic3d_BndBox4f
This commit is contained in:
vpa
2014-06-26 19:00:57 +04:00
committed by bugmaster
parent c9fb852983
commit aade732dda
2 changed files with 61 additions and 59 deletions

View File

@@ -17,7 +17,7 @@
#define _VOXEL_VISDRAWER_H_
#include "Voxel_VisData.h"
#include <Graphic3d_CBounds.hxx>
#include <Graphic3d_BndBox4f.hxx>
class Handle(OpenGl_GraphicDriver);
@@ -34,7 +34,7 @@ public:
Standard_EXPORT VoxelClient_VisDrawer(Voxel_VisData* theData);
Standard_EXPORT virtual ~VoxelClient_VisDrawer();
Standard_EXPORT void EvalMinMax(Graphic3d_CBounds& theMinMax) const;
Standard_EXPORT void EvalMinMax(Graphic3d_BndBox4f& theMinMax) const;
Standard_EXPORT void Display(const Standard_Boolean theHighlight);
private: