mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-26 10:19:45 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
94 lines
3.3 KiB
C++
94 lines
3.3 KiB
C++
// Created on: 1998-08-25
|
|
// Created by: Pavel DURANDIN
|
|
// Copyright (c) 1998-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 <ShapeAnalysis_FreeBoundData.ixx>
|
|
#include <TopTools_HSequenceOfShape.hxx>
|
|
#include <TopoDS.hxx>
|
|
|
|
//=======================================================================
|
|
//function : ShapeAnalysis_FreeBoundData
|
|
//purpose : Empty constructor
|
|
//=======================================================================
|
|
|
|
ShapeAnalysis_FreeBoundData::ShapeAnalysis_FreeBoundData()
|
|
{
|
|
myNotches = new TopTools_HSequenceOfShape();
|
|
Clear();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : ShapeAnalysis_FreeBoundData
|
|
//purpose : Creates object with contour given in the form of TopoDS_Wire
|
|
//=======================================================================
|
|
|
|
ShapeAnalysis_FreeBoundData::ShapeAnalysis_FreeBoundData(const TopoDS_Wire& freebound)
|
|
{
|
|
myNotches = new TopTools_HSequenceOfShape();
|
|
Clear();
|
|
SetFreeBound(freebound);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Clear
|
|
//purpose : Clears all properties of the contour. Contour bound itself is not cleared.
|
|
//=======================================================================
|
|
|
|
void ShapeAnalysis_FreeBoundData::Clear()
|
|
{
|
|
myArea = -1;
|
|
myPerimeter = -1;
|
|
myRatio = -1;
|
|
myWidth = -1;
|
|
myNotches->Clear();
|
|
myNotchesParams.Clear();
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : AddNotch
|
|
//purpose : Adds notch on free bound with its maximum width
|
|
//=======================================================================
|
|
|
|
void ShapeAnalysis_FreeBoundData::AddNotch(const TopoDS_Wire& notch,const Standard_Real width)
|
|
{
|
|
if (myNotchesParams.IsBound(notch)) return;
|
|
myNotches->Append(notch);
|
|
myNotchesParams.Bind(notch, width);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : NotchWidth
|
|
//purpose : Returns maximum width of notch specified by its rank number
|
|
// on the contour
|
|
//=======================================================================
|
|
|
|
Standard_Real ShapeAnalysis_FreeBoundData::NotchWidth(const Standard_Integer index) const
|
|
{
|
|
TopoDS_Wire wire = TopoDS::Wire(myNotches -> Value(index));
|
|
return myNotchesParams.Find(wire);
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : NotchWidth
|
|
//purpose : Returns maximum width of notch specified as TopoDS_Wire
|
|
// on the contour
|
|
//=======================================================================
|
|
|
|
Standard_Real ShapeAnalysis_FreeBoundData::NotchWidth(const TopoDS_Wire& notch) const
|
|
{
|
|
return myNotchesParams.Find(notch);
|
|
}
|