Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/opencascade/BRepFeat_Form.lxx is written in an unsupported language. File is not indexed.

0001 // Created on: 1997-02-06
0002 // Created by: Olga PILLOT
0003 // Copyright (c) 1997-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 : BRepFeatForm
0019 //purpose  : 
0020 //=======================================================================
0021 
0022 inline BRepFeat_Form::BRepFeat_Form () :
0023    myFuse(Standard_False),
0024    myModify(Standard_False),
0025    myPerfSelection(BRepFeat_NoSelection),
0026    myJustGluer(Standard_False),
0027    myJustFeat(Standard_False),
0028    mySbOK(Standard_False),mySkOK(Standard_False),
0029    myGSOK(Standard_False),mySFOK(Standard_False),
0030    mySUOK(Standard_False),myGFOK(Standard_False),
0031    myPSOK(Standard_False),
0032    myStatusError(BRepFeat_NotInitialized)
0033 
0034 {}
0035 
0036 //=======================================================================
0037 //function : BasisShapeValid
0038 //purpose  : 
0039 //=======================================================================
0040 
0041 inline void BRepFeat_Form::BasisShapeValid()
0042 {
0043   mySbOK = Standard_True;
0044 }
0045 //=======================================================================
0046 //function : PerfSelectionValid
0047 //purpose  : 
0048 //=======================================================================
0049 
0050 inline void BRepFeat_Form::PerfSelectionValid()
0051 {
0052   myPSOK = Standard_True;
0053 }
0054 
0055 //=======================================================================
0056 //function : GeneratedShapeValid
0057 //purpose  : 
0058 //=======================================================================
0059 
0060 inline void BRepFeat_Form::GeneratedShapeValid()
0061 {
0062   myGSOK = Standard_True;
0063 }
0064 //=======================================================================
0065 //function : ShapeFromValid
0066 //purpose  : 
0067 //=======================================================================
0068 
0069 inline void BRepFeat_Form::ShapeFromValid()
0070 {
0071   mySFOK = Standard_True;
0072 }
0073 //=======================================================================
0074 //function : ShapeUntilValid
0075 //purpose  : 
0076 //=======================================================================
0077 
0078 inline void BRepFeat_Form::ShapeUntilValid()
0079 {
0080   mySUOK = Standard_True;
0081 }
0082 
0083 //=======================================================================
0084 //function : GluedFacesValid
0085 //purpose  : 
0086 //=======================================================================
0087 
0088 inline void BRepFeat_Form::GluedFacesValid()
0089 {
0090   myGFOK = Standard_True;
0091 }
0092 
0093 //=======================================================================
0094 //function : SketchFaceValid
0095 //purpose  : 
0096 //=======================================================================
0097 
0098 inline void BRepFeat_Form::SketchFaceValid()
0099 {
0100   mySkOK = Standard_True;
0101 }
0102 
0103 
0104