1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-19 13:40:49 +03:00

0025026: Visualization, Graphic3d_Plotter - remove unused class

This commit is contained in:
kgv
2014-06-19 18:15:27 +04:00
committed by apn
parent 31c0e2194e
commit 2c5643b6a7
10 changed files with 0 additions and 312 deletions

View File

@@ -105,7 +105,6 @@ uses
ContextView from Visual3d,
Vector from Graphic3d,
Vertex from Graphic3d,
Plotter from Graphic3d,
Camera_Handle from Graphic3d,
Window from Aspect,
PixMap from Image,
@@ -1390,16 +1389,6 @@ is
WindowFitAll ( me : mutable ; Xmin, Ymin, Xmax, Ymax : Integer);
---Purpose: idem than WindowFit
SetPlotter ( me : mutable; aPlotter : Plotter from Graphic3d )
---Purpose: Set a plotter for plotting the contents of the view
-- field MyPlotter
is virtual;
Plot ( me : mutable )
---Purpose: Create a 2D View for plotting the contents of the view
raises BadValue from V3d;
-- if the plotter is undefined.
Compute ( me; AVertex : Vertex from Graphic3d )
returns Vertex from Graphic3d
is static private;
@@ -1662,8 +1651,6 @@ fields
MyWindow: Window from Aspect;
MyPlotter: Plotter from Graphic3d;
myActiveLightsIterator: ListIteratorOfListOfTransient from TColStd;
sx,sy: Integer from Standard;

View File

@@ -50,7 +50,6 @@ ne marche pas.
ne marche pas. Contournement en appelant WNT_Window::Size(Int,Int).
16-08-98 : CAL ; S3892. Ajout grilles 3d.
09-09-98 : CAL ; S3892. Generalisation de TrsPoint.
24-09-98 : CAL ; Ajout d'un parametre a V3d_View::SetPlotter.
06-10-98 : CAL ; Ajout d'un TIMER si CSF_GraphicTimer est definie.
16-10-98 : CAL ; Retrait d'un TIMER si CSF_GraphicTimer est definie.
06-11-98 : CAL ; PRO ?????. Probleme dans ZFitAll si un point dans la vue.
@@ -3008,25 +3007,6 @@ void V3d_View::Init()
}
}
//=============================================================================
//function : SetPlotter
//purpose :
//=============================================================================
void V3d_View::SetPlotter(const Handle(Graphic3d_Plotter)& aPlotter)
{
MyPlotter = aPlotter;
}
//=============================================================================
//function : Plot
//purpose :
//=============================================================================
void V3d_View::Plot()
{
V3d_BadValue_Raise_if( !MyPlotter.IsNull(), "view has no plotter");
MyView->Plot(MyPlotter);
}
//=============================================================================
//function : Dump
//purpose :