Warning, /include/opencascade/ShapeUpgrade_Tool.lxx is written in an unsupported language. File is not indexed.
0001 // Created on: 1999-08-31
0002 // Created by: Pavel DURANDIN
0003 // Copyright (c) 1999-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016
0017 //=======================================================================
0018 //function : SetContext
0019 //purpose :
0020 //=======================================================================
0021
0022 inline void ShapeUpgrade_Tool::SetContext (const Handle(ShapeBuild_ReShape)& context)
0023 {
0024 myContext = context;
0025 }
0026
0027
0028 //=======================================================================
0029 //function : Context
0030 //purpose :
0031 //=======================================================================
0032
0033 inline Handle(ShapeBuild_ReShape) ShapeUpgrade_Tool::Context() const
0034 {
0035 return myContext;
0036 }
0037
0038
0039 //=======================================================================
0040 //function : SetPrecision
0041 //purpose :
0042 //=======================================================================
0043
0044 inline void ShapeUpgrade_Tool::SetPrecision (const Standard_Real preci)
0045 {
0046 myPrecision = preci;
0047 if(myMaxTol < myPrecision) myMaxTol = myPrecision;
0048 if(myMinTol > myPrecision) myMinTol = myPrecision;
0049 }
0050
0051
0052 //=======================================================================
0053 //function : Precision
0054 //purpose :
0055 //=======================================================================
0056
0057 inline Standard_Real ShapeUpgrade_Tool::Precision() const
0058 {
0059 return myPrecision;
0060 }
0061
0062
0063 //=======================================================================
0064 //function : SetMinTolerance
0065 //purpose :
0066 //=======================================================================
0067
0068 inline void ShapeUpgrade_Tool::SetMinTolerance (const Standard_Real mintol)
0069 {
0070 myMinTol = mintol;
0071 }
0072
0073
0074 //=======================================================================
0075 //function : MinTolerance
0076 //purpose :
0077 //=======================================================================
0078
0079 inline Standard_Real ShapeUpgrade_Tool::MinTolerance() const
0080 {
0081 return myMinTol;
0082 }
0083
0084
0085 //=======================================================================
0086 //function : SetMaxTolerance
0087 //purpose :
0088 //=======================================================================
0089
0090 inline void ShapeUpgrade_Tool::SetMaxTolerance (const Standard_Real maxtol)
0091 {
0092 myMaxTol = maxtol;
0093 }
0094
0095
0096 //=======================================================================
0097 //function : MaxTolerance
0098 //purpose :
0099 //=======================================================================
0100
0101 inline Standard_Real ShapeUpgrade_Tool::MaxTolerance() const
0102 {
0103 return myMaxTol;
0104 }
0105
0106 //=======================================================================
0107 //function : LimitTolerance
0108 //purpose :
0109 //=======================================================================
0110
0111 inline Standard_Real ShapeUpgrade_Tool::LimitTolerance(const Standard_Real toler) const
0112 {
0113 //only maximal restriction implemented.
0114 return Min(myMaxTol,toler);
0115 }