// File: IntPolyh_ArrayOfTangentZones.cxx // Created: Tue Apr 6 11:05:39 1999 // Author: Fabrice SERVANT // #include #include #include IntPolyh_ArrayOfTangentZones::IntPolyh_ArrayOfTangentZones() : n(0),nbtangentzones(0),ptr(0) { } IntPolyh_ArrayOfTangentZones::IntPolyh_ArrayOfTangentZones(const Standard_Integer N) : nbtangentzones(0){ Init(N); } void IntPolyh_ArrayOfTangentZones::Init(const Standard_Integer N) { Destroy(); ptr = (void*) (new IntPolyh_StartPoint [N]); n=N; } Standard_Integer IntPolyh_ArrayOfTangentZones::GetN() const { return(n); } Standard_Integer IntPolyh_ArrayOfTangentZones::NbTangentZones() const { return(nbtangentzones); } void IntPolyh_ArrayOfTangentZones::IncrementNbTangentZones() { nbtangentzones++; } # ifdef DEB # define BORNES1 # endif const IntPolyh_StartPoint& IntPolyh_ArrayOfTangentZones::Value(const Standard_Integer Index) const { IntPolyh_StartPoint *ptrstpoint = (IntPolyh_StartPoint *)ptr; #if BORNES if(Index<0 || Index>=n) { cerr<<" Erreur1 "<=n) { cerr<<" Erreur1 "< %d",nbtangentzones-1); for(Standard_Integer i=0;i