mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-26 10:19:45 +03:00
106 lines
3.0 KiB
C++
106 lines
3.0 KiB
C++
// Created on: 1995-12-07
|
|
// Created by: Jacques GOUSSARD
|
|
// Copyright (c) 1995-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 <BRepCheck.hxx>
|
|
#include <BRepCheck_Result.hxx>
|
|
#include <Standard_NoSuchObject.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <TopoDS_Shape.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(BRepCheck_Result,Standard_Transient)
|
|
|
|
//=======================================================================
|
|
//function : BRepCheck_Result
|
|
//purpose :
|
|
//=======================================================================
|
|
BRepCheck_Result::BRepCheck_Result() :
|
|
myMin(Standard_False),myBlind(Standard_False)
|
|
{
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Init
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void BRepCheck_Result::Init(const TopoDS_Shape& S)
|
|
{
|
|
myShape = S;
|
|
myMin = Standard_False;
|
|
myBlind = Standard_False;
|
|
myMap.Clear();
|
|
Minimum();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetFailStatus
|
|
//purpose :
|
|
//=======================================================================
|
|
void BRepCheck_Result::SetFailStatus(const TopoDS_Shape& S)
|
|
{
|
|
if(!myMap.IsBound(S)) {
|
|
BRepCheck_ListOfStatus thelist;
|
|
myMap.Bind(S, thelist);
|
|
}
|
|
BRepCheck::Add(myMap(S), BRepCheck_CheckFail);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : StatusOnShape
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const BRepCheck_ListOfStatus& BRepCheck_Result::StatusOnShape
|
|
(const TopoDS_Shape& S)
|
|
{
|
|
if (!myMap.IsBound(S)) {
|
|
InContext(S);
|
|
}
|
|
return myMap(S);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : InitContextIterator
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void BRepCheck_Result::InitContextIterator()
|
|
{
|
|
myIter.Initialize(myMap);
|
|
// At least 1 element : the Shape itself
|
|
if (myIter.Key().IsSame(myShape)) {
|
|
myIter.Next();
|
|
}
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : NextShapeInContext
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void BRepCheck_Result::NextShapeInContext()
|
|
{
|
|
myIter.Next();
|
|
if (myIter.More() && myIter.Key().IsSame(myShape)) {
|
|
myIter.Next();
|
|
}
|
|
}
|