1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0024166: Unable to create file with "Save" menu of voxeldemo Qt sample

Turning on the light to display the shapes of the sample.
This commit is contained in:
vro 2013-12-17 12:27:29 +04:00 committed by apn
parent 4a0c5c25a4
commit 3693361422

View File

@ -15,6 +15,8 @@
#include <Aspect_DisplayConnection.hxx>
#include <Graphic3d.hxx>
#include <OpenGl_GraphicDriver.hxx>
#include <V3d_DirectionalLight.hxx>
#include <V3d_AmbientLight.hxx>
static Handle(Graphic3d_GraphicDriver) Viewer_aGraphicDriver;
@ -72,6 +74,9 @@ Viewer::Viewer(QWidget* parent):QWidget(parent)
setFocusPolicy( Qt::StrongFocus );
setAttribute( Qt::WA_PaintOnScreen );
setAttribute( Qt::WA_NoSystemBackground );
aViewer->SetLightOn(new V3d_DirectionalLight(aViewer, V3d_XnegYnegZneg, Quantity_NOC_WHITE, Standard_True));
aViewer->SetLightOn(new V3d_AmbientLight(aViewer, Quantity_NOC_WHITE));
}
Viewer::~Viewer()