Warning, /include/opencascade/IntPatch_Intersection.lxx is written in an unsupported language. File is not indexed.
0001 // Created by: Modelization
0002 // Copyright (c) 1995-1999 Matra Datavision
0003 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0004 //
0005 // This file is part of Open CASCADE Technology software library.
0006 //
0007 // This library is free software; you can redistribute it and/or modify it under
0008 // the terms of the GNU Lesser General Public License version 2.1 as published
0009 // by the Free Software Foundation, with special exception defined in the file
0010 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0011 // distribution for complete text of the license and disclaimer of any warranty.
0012 //
0013 // Alternatively, this file may be used under the terms of Open CASCADE
0014 // commercial license or contractual agreement.
0015
0016 #include <StdFail_NotDone.hxx>
0017 #include <Standard_DomainError.hxx>
0018 #include <IntPatch_Line.hxx>
0019
0020 inline Standard_Boolean IntPatch_Intersection::IsDone () const
0021 {
0022 return done;
0023 }
0024
0025 inline Standard_Boolean IntPatch_Intersection::IsEmpty () const
0026 {
0027 if (!done) {throw StdFail_NotDone();}
0028 return empt;
0029 }
0030
0031 inline Standard_Boolean IntPatch_Intersection::TangentFaces () const
0032 {
0033 if (!done) {throw StdFail_NotDone();}
0034 return tgte;
0035 }
0036
0037 inline Standard_Boolean IntPatch_Intersection::OppositeFaces () const
0038 {
0039 if (!done) {throw StdFail_NotDone();}
0040 if (!tgte) {throw Standard_DomainError();}
0041 return oppo;
0042 }
0043
0044 inline Standard_Integer IntPatch_Intersection::NbPnts () const
0045 {
0046 if (!done) {throw StdFail_NotDone();}
0047 return spnt.Length();
0048 }
0049
0050 inline const IntPatch_Point& IntPatch_Intersection::Point (const Standard_Integer Index) const
0051 {
0052 if (!done) {throw StdFail_NotDone();}
0053 return spnt(Index);
0054 }
0055
0056 inline Standard_Integer IntPatch_Intersection::NbLines () const
0057 {
0058 if (!done) {throw StdFail_NotDone();}
0059 return slin.Length();
0060 }
0061
0062 inline const Handle(IntPatch_Line)& IntPatch_Intersection::Line (const Standard_Integer Index) const
0063 {
0064 if (!done) {throw StdFail_NotDone();}
0065 return slin(Index);
0066 }