1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-13 14:27:08 +03:00
Files
occt/src/TopOpeBRepDS/TopOpeBRepDS_Marker.cxx

71 lines
2.0 KiB
C++

// Created on: 1997-10-22
// Created by: Jean Yves LEBEY
// Copyright (c) 1997-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <Standard_Type.hxx>
#include <TopOpeBRepDS_define.hxx>
#include <TopOpeBRepDS_Marker.hxx>
IMPLEMENT_STANDARD_RTTIEXT(TopOpeBRepDS_Marker,Standard_Transient)
//#include <TopExp.hxx>
//#include <TopTools_IndexedMapOfShape.hxx>
TopOpeBRepDS_Marker::TopOpeBRepDS_Marker()
{
Reset();
}
void TopOpeBRepDS_Marker::Reset()
{
myhe.Nullify();
myne = 0;
}
void TopOpeBRepDS_Marker::Set(const Standard_Integer ie, const Standard_Boolean b)
{
Allocate(ie);
if (!(ie>=1 && ie<=myne)) return;
myhe->SetValue(ie,b);
}
void TopOpeBRepDS_Marker::Set(const Standard_Boolean b, const Standard_Integer na, const Standard_Address aa)
{
char ** a = (char**)aa;
// Standard_Integer ia,ie;
Standard_Integer ia;
if (!na) myhe->Init(b);
else for (ia=0; ia<na; ia++) Set(atoi(a[ia]),b);
}
Standard_Boolean TopOpeBRepDS_Marker::GetI(const Standard_Integer ie) const
{
if (myhe.IsNull()) return Standard_False;
if (!(ie>=1 && ie<=myne)) return Standard_False;
return myhe->Value(ie);
}
void TopOpeBRepDS_Marker::Allocate(const Standard_Integer n)
{
Standard_Boolean all = (n > myne);
Standard_Integer nall = n;
if (all) {
if (myne == 0) nall = 1000;
myhe = new TColStd_HArray1OfBoolean(0,nall);
myhe->Init(Standard_False);
}
if (nall) myne = nall;
}