mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-17 23:53:20 +08:00
Classes BOPInt_Context, BOPInt_ShrunkRange, BOPInt_Tools have been removed. Package BOPInt has been removed Classes IntTools_Context, IntTools_ShrunkRange have been added to replace corresponding BOPInt_ classes. The classes provide same functionality as corresponding BOPInt_ classes. Classes : BOPAlgo_ArgumentAnalyzer BOPAlgo_Builder BOPAlgo_BuilderArea BOPAlgo_BuilderFace BOPAlgo_BuilderSolid BOPAlgo_CheckerSI BOPAlgo_PaveFiller BOPAlgo_ShellSplitter BOPTools_AlgoTools3D BRepFill_TrimShellCorner IntTools_BeanFaceIntersector IntTools_EdgeFace IntTools_FaceFace IntTools_Tools have been modified to use new classes IntTools_Context IntTools_ShrunkRange Class IntTools_Tools has been modofied to provide the functionality that was in BOPInt_Tools.
177 lines
5.2 KiB
Plaintext
177 lines
5.2 KiB
Plaintext
-- Created on: 2000-11-23
|
|
-- Created by: Michael KLOKOV
|
|
-- Copyright (c) 2000-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.
|
|
|
|
class FaceFace from IntTools
|
|
|
|
---Purpose: This class provides the intersection of
|
|
--- face's underlying surfaces.
|
|
|
|
uses
|
|
|
|
TopolTool from Adaptor3d,
|
|
HSurface from GeomAdaptor,
|
|
ListOfPntOn2S from IntSurf ,
|
|
Intersection from IntPatch,
|
|
Face from TopoDS,
|
|
SequenceOfCurves from IntTools,
|
|
LineConstructor from IntTools,
|
|
SequenceOfPntOn2Faces from IntTools,
|
|
Context from IntTools
|
|
|
|
|
|
|
|
raises NotDone from StdFail
|
|
is
|
|
|
|
Create
|
|
returns FaceFace from IntTools;
|
|
---Purpose:
|
|
--- Empty constructor.
|
|
|
|
|
|
SetParameters(me: in out;
|
|
ApproxCurves : Boolean from Standard;
|
|
ComputeCurveOnS1: Boolean from Standard;
|
|
ComputeCurveOnS2: Boolean from Standard;
|
|
ApproximationTolerance: Real from Standard);
|
|
---Purpose:
|
|
--- Modifier
|
|
---
|
|
|
|
Perform(me: in out;
|
|
F1: Face from TopoDS;
|
|
F2: Face from TopoDS);
|
|
---Purpose:
|
|
--- Intersects underliing surfaces of F1 and F2
|
|
--- Use sum of tolerance of F1 and F2 as intersection
|
|
--- criteria
|
|
|
|
IsDone(me)
|
|
returns Boolean from Standard;
|
|
---Purpose:
|
|
--- Returns True if the intersection was successful
|
|
---
|
|
|
|
Lines(me)
|
|
returns SequenceOfCurves from IntTools;
|
|
---C++: return const&
|
|
---Purpose:
|
|
--- Returns sequence of 3d curves as result of intersection
|
|
---
|
|
|
|
Points(me)
|
|
returns SequenceOfPntOn2Faces from IntTools;
|
|
---C++: return const&
|
|
---Purpose:
|
|
--- Returns sequence of 3d curves as result of intersection
|
|
---
|
|
|
|
TolReached3d(me)
|
|
returns Real from Standard;
|
|
---Purpose:
|
|
--- Returns tolerance reached during approximation.
|
|
--- If approximation was not done, returns zero.
|
|
|
|
TolReached2d(me)
|
|
returns Real from Standard;
|
|
---Purpose:
|
|
--- Returns tolerance reached during approximation.
|
|
--- If approximation was not done, returns zero.
|
|
---
|
|
|
|
Face1 (me)
|
|
returns Face from TopoDS;
|
|
---C++: return const&
|
|
---Purpose:
|
|
--- Returns first of processed faces
|
|
---
|
|
|
|
Face2 (me)
|
|
returns Face from TopoDS;
|
|
---C++: return const&
|
|
---Purpose:
|
|
--- Returns second of processed faces
|
|
---
|
|
|
|
TangentFaces (me)
|
|
returns Boolean from Standard;
|
|
---Purpose:
|
|
--- Returns True if faces are tangent
|
|
---
|
|
PrepareLines3D (me:out;
|
|
bToSplit: Boolean from Standard=Standard_True);
|
|
---Purpose:
|
|
--- Provides post-processing the result lines.
|
|
--- <bToSplit> - the flag.
|
|
-- In case of <bToSplit> is true the closed 3D-curves will be splitted
|
|
-- on parts.
|
|
-- In case of <bToSplit> is false the closed 3D-curves remain untouched.
|
|
|
|
SetList (me: in out;
|
|
ListOfPnts: in out ListOfPntOn2S from IntSurf);
|
|
|
|
----------------------------------------------------------
|
|
-- private block
|
|
----------------------------------------------------------
|
|
MakeCurve(me: in out; Index : Integer from Standard;
|
|
D1 : TopolTool from Adaptor3d;
|
|
D2 : TopolTool from Adaptor3d)
|
|
is protected;
|
|
|
|
ComputeTolReached3d(me:out)
|
|
is protected;
|
|
|
|
SetContext(me:out;
|
|
aContext : Context from IntTools);
|
|
---Purpose:
|
|
--- Sets the intersecton context
|
|
|
|
Context(me)
|
|
returns Context from IntTools;
|
|
---C++: return const &
|
|
---Purpose:
|
|
--- Gets the intersecton context
|
|
|
|
fields
|
|
|
|
myIsDone : Boolean from Standard;
|
|
myIntersector : Intersection from IntPatch;
|
|
myLConstruct : LineConstructor from IntTools;
|
|
myHS1 : HSurface from GeomAdaptor;
|
|
myHS2 : HSurface from GeomAdaptor;
|
|
myNbrestr : Integer from Standard;
|
|
|
|
myTolReached2d : Real from Standard;
|
|
myTolReached3d : Real from Standard;
|
|
|
|
myApprox : Boolean from Standard;
|
|
myApprox1 : Boolean from Standard;
|
|
myApprox2 : Boolean from Standard;
|
|
myTolApprox : Real from Standard;
|
|
|
|
mySeqOfCurve : SequenceOfCurves from IntTools;
|
|
|
|
myTangentFaces: Boolean from Standard;
|
|
myFace1 : Face from TopoDS;
|
|
myFace2 : Face from TopoDS;
|
|
myPnts : SequenceOfPntOn2Faces from IntTools;
|
|
|
|
myListOfPnts : ListOfPntOn2S from IntSurf;
|
|
|
|
myContext : Context from IntTools;
|
|
|
|
end FaceFace from IntTools;
|
|
|