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

0028214: Make the class GeomPlate_BuildPlateSurface accept Adaptor3d_HCurve instead of Adaptor3d_HCurveOnSurface

Now, GeomPlate_BuildPlateSurface accepts base class Adaptor3d_HCurve and of course array of Adaptor3d_HCurve.

Classes GeomPlate_Array1OfHCurveOnSurface and GeomPlate_HArray1OfHCurveOnSurface have been renamed to GeomPlate_Array1OfHCurve and GeomPlate_HArray1OfHCurve correspondingly.

Documentation has been updated.

Correction in documentation.
This commit is contained in:
nbv
2017-01-19 16:02:29 +03:00
committed by apn
parent 0577ae8ca4
commit 465e686173
11 changed files with 31 additions and 22 deletions

View File

@@ -12,6 +12,8 @@
#include "ISession_Direction.h"
#include "..\res\resource.h"
#include <Adaptor3d_HCurveOnSurface.hxx>
#include <Adaptor3d_CurveOnSurface.hxx>
#include <AIS_ListOfInteractive.hxx>
#include <AIS_ListIteratorOfListOfInteractive.hxx>
#include <TColStd_Array2OfReal.hxx>
@@ -4665,8 +4667,8 @@ void CModelingDoc::OnStopStop()
nbedges++;
}
Handle(GeomPlate_HArray1OfHCurveOnSurface) Fronts =
new GeomPlate_HArray1OfHCurveOnSurface(1,nbedges);
Handle(GeomPlate_HArray1OfHCurve) Fronts =
new GeomPlate_HArray1OfHCurve(1, nbedges);
Handle(TColStd_HArray1OfInteger) Tang =
new TColStd_HArray1OfInteger(1,nbedges);
Handle(TColStd_HArray1OfInteger) NbPtsCur =

View File

@@ -108,7 +108,7 @@
#include <LocOpe_FindEdges.hxx>
#include <TopoDS_Compound.hxx>
#include <TopoDS_Solid.hxx>
#include <GeomPlate_HArray1OfHCurveOnSurface.hxx>
#include <GeomPlate_HArray1OfHCurve.hxx>
#include <TColStd_HArray1OfInteger.hxx>
#include <BRepAdaptor_Surface.hxx>
#include <GeomAdaptor_HSurface.hxx>