mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0024267: Exception in Visual3d_ViewManager::Redraw() when color scale is displayed
Removing V3d_Viewer::Init() and the default views created internally by the viewer.
This commit is contained in:
parent
bf6acfe656
commit
426dc099e9
@ -112,10 +112,6 @@ is
|
|||||||
---Purpose: creates a view in the viewer according to its
|
---Purpose: creates a view in the viewer according to its
|
||||||
-- default parameters.
|
-- default parameters.
|
||||||
|
|
||||||
DefaultOrthographicView(me: mutable) returns mutable OrthographicView from V3d;
|
|
||||||
|
|
||||||
DefaultPerspectiveView(me: mutable) returns mutable PerspectiveView from V3d;
|
|
||||||
|
|
||||||
-------------------------------------------------------
|
-------------------------------------------------------
|
||||||
---Category: Methods to modify the status of the viewer
|
---Category: Methods to modify the status of the viewer
|
||||||
-------------------------------------------------------
|
-------------------------------------------------------
|
||||||
@ -631,8 +627,6 @@ is
|
|||||||
-- directional-light V3d_XnegYneg
|
-- directional-light V3d_XnegYneg
|
||||||
-- ambient-light
|
-- ambient-light
|
||||||
|
|
||||||
Init(me: mutable);
|
|
||||||
|
|
||||||
IsActive(me; aView: View from V3d)
|
IsActive(me; aView: View from V3d)
|
||||||
returns Boolean from Standard is private;
|
returns Boolean from Standard is private;
|
||||||
|
|
||||||
@ -700,8 +694,6 @@ fields
|
|||||||
MySurfaceDetail: TypeOfSurfaceDetail from V3d ;
|
MySurfaceDetail: TypeOfSurfaceDetail from V3d ;
|
||||||
MyDefaultAngle: PlaneAngle from Quantity;
|
MyDefaultAngle: PlaneAngle from Quantity;
|
||||||
MyDefaultTypeOfView: TypeOfView from V3d;
|
MyDefaultTypeOfView: TypeOfView from V3d;
|
||||||
MyDefaultOrthographicView: OrthographicView from V3d;
|
|
||||||
MyDefaultPerspectiveView: PerspectiveView from V3d;
|
|
||||||
MyCurrentSelectedLight: Light from V3d;
|
MyCurrentSelectedLight: Light from V3d;
|
||||||
myActiveViewsIterator: ListIteratorOfListOfTransient from TColStd;
|
myActiveViewsIterator: ListIteratorOfListOfTransient from TColStd;
|
||||||
myDefinedViewsIterator: ListIteratorOfListOfTransient from TColStd;
|
myDefinedViewsIterator: ListIteratorOfListOfTransient from TColStd;
|
||||||
|
@ -125,16 +125,6 @@ void V3d_Viewer::SetViewOn( ) {
|
|||||||
SetViewOn(ActiveView());};
|
SetViewOn(ActiveView());};
|
||||||
}
|
}
|
||||||
|
|
||||||
Handle(V3d_OrthographicView) V3d_Viewer::DefaultOrthographicView() {
|
|
||||||
|
|
||||||
return MyDefaultOrthographicView;
|
|
||||||
}
|
|
||||||
|
|
||||||
Handle(V3d_PerspectiveView) V3d_Viewer::DefaultPerspectiveView () {
|
|
||||||
|
|
||||||
return MyDefaultPerspectiveView;
|
|
||||||
}
|
|
||||||
|
|
||||||
void V3d_Viewer::SetViewOff( ) {
|
void V3d_Viewer::SetViewOff( ) {
|
||||||
|
|
||||||
for (InitDefinedViews();MoreDefinedViews();NextDefinedViews()){
|
for (InitDefinedViews();MoreDefinedViews();NextDefinedViews()){
|
||||||
|
@ -114,9 +114,3 @@ void V3d_Viewer::SetDefaultLights()
|
|||||||
SetLightOn (new V3d_DirectionalLight (this, V3d_Zneg, Quantity_NOC_WHITE, Standard_True));
|
SetLightOn (new V3d_DirectionalLight (this, V3d_Zneg, Quantity_NOC_WHITE, Standard_True));
|
||||||
SetLightOn (new V3d_AmbientLight (this));
|
SetLightOn (new V3d_AmbientLight (this));
|
||||||
}
|
}
|
||||||
|
|
||||||
void V3d_Viewer::Init() {
|
|
||||||
MyDefaultPerspectiveView = new V3d_PerspectiveView(this);
|
|
||||||
MyDefaultOrthographicView = new V3d_OrthographicView(this);
|
|
||||||
SetDefaultLights();
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user