Coding - Deprecate NCollection_Vector (#1230)

- Updated multiple files to replace instances of NCollection_Vector with NCollection_DynamicArray
This commit is contained in:
Pasukhin Dmitry
2026-04-24 21:47:27 +01:00
committed by GitHub
parent b91b6d48b4
commit 90f5d7b214
311 changed files with 3505 additions and 3427 deletions
@@ -35,7 +35,7 @@
#include <GeomConvert.hxx>
#include <GeomConvert_CompCurveToBSplineCurve.hxx>
#include <GeomLProp.hxx>
#include <NCollection_Vector.hxx>
#include <NCollection_DynamicArray.hxx>
#include <gp_Pnt.hxx>
#include <Precision.hxx>
#include <ShapeFix_Shape.hxx>
@@ -79,10 +79,10 @@ TopoDS_Wire BRepAlgo::ConvertWire(const TopoDS_Wire& theWire,
const double theAngleTol,
const TopoDS_Face& theFace)
{
TopoDS_Wire aResult;
double aMaxTol(0.);
const occ::handle<Geom_Surface> aSurf = BRep_Tool::Surface(theFace);
NCollection_Vector<OrientedCurve> vecCurve;
TopoDS_Wire aResult;
double aMaxTol(0.);
const occ::handle<Geom_Surface> aSurf = BRep_Tool::Surface(theFace);
NCollection_DynamicArray<OrientedCurve> vecCurve;
BRepTools_WireExplorer anExpE(theWire, theFace);
// Explore the edges in the current wire, in their connection order