Warning, /include/opencascade/IntPatch_PolyhedronTool.lxx is written in an unsupported language. File is not indexed.
0001 // Created on: 1993-05-06
0002 // Created by: Jacques GOUSSARD
0003 // Copyright (c) 1993-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 inline const Bnd_Box& IntPatch_PolyhedronTool::Bounding(const IntPatch_Polyhedron& thePolyh)
0018 {
0019 return thePolyh.Bounding();
0020 }
0021
0022 inline const occ::handle<NCollection_HArray1<Bnd_Box>>& IntPatch_PolyhedronTool::ComponentsBounding(
0023 const IntPatch_Polyhedron& thePolyh)
0024 {
0025 return thePolyh.ComponentsBounding();
0026 }
0027
0028 inline double IntPatch_PolyhedronTool::DeflectionOverEstimation(const IntPatch_Polyhedron& thePolyh)
0029 {
0030 return thePolyh.DeflectionOverEstimation();
0031 }
0032
0033 inline int IntPatch_PolyhedronTool::NbTriangles(const IntPatch_Polyhedron& thePolyh)
0034 {
0035 return thePolyh.NbTriangles();
0036 }
0037
0038 inline void IntPatch_PolyhedronTool::Triangle(const IntPatch_Polyhedron& thePolyh,
0039 const int Index,
0040 int& P1,
0041 int& P2,
0042 int& P3)
0043 {
0044 thePolyh.Triangle(Index, P1, P2, P3);
0045 }
0046
0047 inline const gp_Pnt& IntPatch_PolyhedronTool::Point(const IntPatch_Polyhedron& thePolyh,
0048 const int Index)
0049 {
0050 return thePolyh.Point(Index);
0051 }
0052
0053 inline int IntPatch_PolyhedronTool::TriConnex(const IntPatch_Polyhedron& thePolyh,
0054 const int Triang,
0055 const int Pivot,
0056 const int Pedge,
0057 int& TriCon,
0058 int& OtherP)
0059 {
0060 return thePolyh.TriConnex(Triang, Pivot, Pedge, TriCon, OtherP);
0061 }