mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-09-08 05:38:12 +08:00
0024940: WOK: Cyclic dependency detected between: BOPInt IntTools
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.
This commit is contained in:
+187
-133
@@ -15,9 +15,9 @@
|
||||
|
||||
class Tools from IntTools
|
||||
|
||||
---Purpose:
|
||||
--- The class contains handy static functions
|
||||
--- dealing with the geometry and topology.
|
||||
---Purpose:
|
||||
--- The class contains handy static functions
|
||||
--- dealing with the geometry and topology.
|
||||
|
||||
uses
|
||||
Shape from TopoDS,
|
||||
@@ -28,160 +28,214 @@ uses
|
||||
Pnt2d from gp,
|
||||
Pnt from gp,
|
||||
Dir from gp,
|
||||
Lin from gp,
|
||||
Pln from gp,
|
||||
CommonPrt from IntTools,
|
||||
Curve from IntTools,
|
||||
Range from IntTools,
|
||||
SequenceOfCurves from IntTools,
|
||||
Curve from Geom,
|
||||
State from TopAbs
|
||||
|
||||
State from TopAbs,
|
||||
Box from Bnd
|
||||
|
||||
is
|
||||
ComputeVV (myclass;V1,V2:Vertex from TopoDS)
|
||||
returns Integer from Standard;
|
||||
---Purpose:
|
||||
--- Computes distance between vertex V1 and vertex V2,
|
||||
--- if the distance is less than sum of vertex tolerances
|
||||
--- returns zero,
|
||||
--- otherwise returns negative value
|
||||
---
|
||||
returns Integer from Standard;
|
||||
---Purpose:
|
||||
--- Computes distance between vertex V1 and vertex V2,
|
||||
--- if the distance is less than sum of vertex tolerances
|
||||
--- returns zero,
|
||||
--- otherwise returns negative value
|
||||
---
|
||||
|
||||
HasInternalEdge (myclass;
|
||||
aW: Wire from TopoDS)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if wire aW contains edges
|
||||
--- with INTERNAL orientation
|
||||
---
|
||||
aW: Wire from TopoDS)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if wire aW contains edges
|
||||
--- with INTERNAL orientation
|
||||
---
|
||||
|
||||
MakeFaceFromWireAndFace (myclass;
|
||||
aW: Wire from TopoDS;
|
||||
aF: Face from TopoDS;
|
||||
aFNew:out Face from TopoDS);
|
||||
---Purpose:
|
||||
--- Build a face based on surface of given face aF
|
||||
--- and bounded by wire aW
|
||||
---
|
||||
|
||||
ClassifyPointByFace (myclass;
|
||||
aF: Face from TopoDS;
|
||||
P: Pnt2d from gp)
|
||||
returns State from TopAbs;
|
||||
---Purpose:
|
||||
---
|
||||
---
|
||||
|
||||
aW: Wire from TopoDS;
|
||||
aF: Face from TopoDS;
|
||||
aFNew:out Face from TopoDS);
|
||||
---Purpose:
|
||||
--- Build a face based on surface of given face aF
|
||||
--- and bounded by wire aW
|
||||
---
|
||||
|
||||
ClassifyPointByFace (myclass;
|
||||
aF: Face from TopoDS;
|
||||
P: Pnt2d from gp)
|
||||
returns State from TopAbs;
|
||||
---Purpose:
|
||||
---
|
||||
---
|
||||
|
||||
IsVertex (myclass; E: Edge from TopoDS;
|
||||
t: Real from Standard)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Computes square distance between a point on the edge E
|
||||
--- corresponded to parameter t and vertices of edge E.
|
||||
--- Returns True if this distance is less than square
|
||||
--- tolerance of vertex, otherwise returns false.
|
||||
---
|
||||
|
||||
IsVertex (myclass; E: Edge from TopoDS;
|
||||
V: Vertex from TopoDS;
|
||||
t: Real from Standard)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if square distance between vertex V
|
||||
--- and a point on the edge E corresponded to parameter t
|
||||
--- is less than square tolerance of V
|
||||
---
|
||||
|
||||
IsVertex (myclass; aCmnPrt: CommonPrt from IntTools)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if IsVertx for middle parameter of fist range
|
||||
--- and first edge returns True
|
||||
--- and if IsVertex for middle parameter of second range and
|
||||
--- second range returns True,
|
||||
--- otherwise returns False
|
||||
---
|
||||
|
||||
IsMiddlePointsEqual(myclass;
|
||||
E1: Edge from TopoDS;
|
||||
E2: Edge from TopoDS)
|
||||
t: Real from Standard)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Gets boundary of parameters of E1 and E2.
|
||||
--- Computes 3d points on each corresponded to average parameters.
|
||||
--- Returns True if distance between computed points is less than
|
||||
--- sum of edge tolerance, otherwise returns False.
|
||||
---
|
||||
---Purpose:
|
||||
--- Computes square distance between a point on the edge E
|
||||
--- corresponded to parameter t and vertices of edge E.
|
||||
--- Returns True if this distance is less than square
|
||||
--- tolerance of vertex, otherwise returns false.
|
||||
---
|
||||
|
||||
IsVertex (myclass; E: Edge from TopoDS;
|
||||
V: Vertex from TopoDS;
|
||||
t: Real from Standard)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if square distance between vertex V
|
||||
--- and a point on the edge E corresponded to parameter t
|
||||
--- is less than square tolerance of V
|
||||
---
|
||||
|
||||
IsVertex (myclass; aCmnPrt: CommonPrt from IntTools)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if IsVertx for middle parameter of fist range
|
||||
--- and first edge returns True
|
||||
--- and if IsVertex for middle parameter of second range and
|
||||
--- second range returns True,
|
||||
--- otherwise returns False
|
||||
---
|
||||
|
||||
IsMiddlePointsEqual(myclass;
|
||||
E1: Edge from TopoDS;
|
||||
E2: Edge from TopoDS)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Gets boundary of parameters of E1 and E2.
|
||||
--- Computes 3d points on each corresponded to average parameters.
|
||||
--- Returns True if distance between computed points is less than
|
||||
--- sum of edge tolerance, otherwise returns False.
|
||||
---
|
||||
|
||||
IsVertex (myclass;
|
||||
aP : Pnt from gp;
|
||||
aTolPV: Real from Standard;
|
||||
aV: Vertex from TopoDS)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if the distance between point aP and
|
||||
--- vertex aV is less or equal to sum of aTolPV and
|
||||
--- vertex tolerance, otherwise returns False
|
||||
---
|
||||
aP : Pnt from gp;
|
||||
aTolPV: Real from Standard;
|
||||
aV: Vertex from TopoDS)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if the distance between point aP and
|
||||
--- vertex aV is less or equal to sum of aTolPV and
|
||||
--- vertex tolerance, otherwise returns False
|
||||
---
|
||||
|
||||
IntermediatePoint (myclass;
|
||||
aFirst: Real from Standard;
|
||||
aLast : Real from Standard)
|
||||
returns Real from Standard;
|
||||
---Purpose:
|
||||
--- Returns some value between aFirst and aLast
|
||||
---
|
||||
aFirst: Real from Standard;
|
||||
aLast : Real from Standard)
|
||||
returns Real from Standard;
|
||||
---Purpose:
|
||||
--- Returns some value between aFirst and aLast
|
||||
---
|
||||
|
||||
SplitCurve (myclass;
|
||||
aC : Curve from IntTools;
|
||||
aS :out SequenceOfCurves from IntTools)
|
||||
returns Integer from Standard;
|
||||
---Purpose:
|
||||
--- Split aC by average parameter if aC is closed in 3D.
|
||||
--- Returns positive value if splitting has been done,
|
||||
--- otherwise returns zero.
|
||||
---
|
||||
|
||||
aC : Curve from IntTools;
|
||||
aS :out SequenceOfCurves from IntTools)
|
||||
returns Integer from Standard;
|
||||
---Purpose:
|
||||
--- Split aC by average parameter if aC is closed in 3D.
|
||||
--- Returns positive value if splitting has been done,
|
||||
--- otherwise returns zero.
|
||||
---
|
||||
|
||||
RejectLines(myclass;
|
||||
aSIn: SequenceOfCurves from IntTools;
|
||||
aSOut:out SequenceOfCurves from IntTools);
|
||||
---Purpose:
|
||||
--- Puts curves from aSIn to aSOut except those curves that
|
||||
--- are coincide with first curve from aSIn.
|
||||
---
|
||||
|
||||
aSIn: SequenceOfCurves from IntTools;
|
||||
aSOut:out SequenceOfCurves from IntTools);
|
||||
---Purpose:
|
||||
--- Puts curves from aSIn to aSOut except those curves that
|
||||
--- are coincide with first curve from aSIn.
|
||||
---
|
||||
|
||||
IsDirsCoinside (myclass;
|
||||
D1:Dir from gp;
|
||||
D2:Dir from gp)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if D1 and D2 coinside
|
||||
---
|
||||
D1:Dir from gp;
|
||||
D2:Dir from gp)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if D1 and D2 coinside
|
||||
---
|
||||
|
||||
IsDirsCoinside (myclass;
|
||||
D1 :Dir from gp;
|
||||
D2 :Dir from gp;
|
||||
aTol:Real from Standard)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if D1 and D2 coinside with given tolerance
|
||||
---
|
||||
D1 :Dir from gp;
|
||||
D2 :Dir from gp;
|
||||
aTol:Real from Standard)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if D1 and D2 coinside with given tolerance
|
||||
---
|
||||
|
||||
IsClosed (myclass;
|
||||
aC : Curve from Geom)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if aC is BoundedCurve from Geom and
|
||||
--- the distance between first point
|
||||
--- of the curve aC and last point
|
||||
--- is less than 1.e-12
|
||||
---
|
||||
|
||||
aC : Curve from Geom)
|
||||
returns Boolean from Standard;
|
||||
---Purpose:
|
||||
--- Returns True if aC is BoundedCurve from Geom and
|
||||
--- the distance between first point
|
||||
--- of the curve aC and last point
|
||||
--- is less than 1.e-12
|
||||
---
|
||||
|
||||
CurveTolerance(myclass;
|
||||
aC : Curve from Geom;
|
||||
aTolBase : Real from Standard)
|
||||
returns Real from Standard;
|
||||
---Purpose:
|
||||
--- Returns adaptive tolerance for given aTolBase
|
||||
--- if aC is trimmed curve and basis curve is parabola,
|
||||
--- otherwise returns value of aTolBase
|
||||
---
|
||||
aC : Curve from Geom;
|
||||
aTolBase : Real from Standard)
|
||||
returns Real from Standard;
|
||||
---Purpose:
|
||||
--- Returns adaptive tolerance for given aTolBase
|
||||
--- if aC is trimmed curve and basis curve is parabola,
|
||||
--- otherwise returns value of aTolBase
|
||||
---
|
||||
--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
CheckCurve(myclass;
|
||||
theC:Curve from Geom;
|
||||
theTol:Real from Standard;
|
||||
theBox:out Box from Bnd)
|
||||
returns Boolean from Standard;
|
||||
|
||||
IsOnPave(myclass;
|
||||
theT:Real from Standard;
|
||||
theRange:Range from IntTools;
|
||||
theTol: Real from Standard)
|
||||
returns Boolean from Standard;
|
||||
|
||||
VertexParameters(myclass;
|
||||
theCP:CommonPrt from IntTools;
|
||||
theT1:out Real from Standard;
|
||||
theT2:out Real from Standard);
|
||||
|
||||
VertexParameter(myclass;
|
||||
theCP:CommonPrt from IntTools;
|
||||
theT:out Real from Standard);
|
||||
|
||||
IsOnPave1(myclass;
|
||||
theT:Real from Standard;
|
||||
theRange:Range from IntTools;
|
||||
theTol: Real from Standard)
|
||||
returns Boolean from Standard;
|
||||
|
||||
IsInRange(myclass;
|
||||
theRRef : Range from IntTools;
|
||||
theR : Range from IntTools;
|
||||
theTol : Real from Standard)
|
||||
returns Boolean from Standard;
|
||||
---Purpose: Checks if the range <theR> interfere with the range <theRRef>
|
||||
|
||||
SegPln(myclass;
|
||||
theLin : Lin from gp;
|
||||
theTLin1 : Real from Standard;
|
||||
theTLin2 : Real from Standard;
|
||||
theTolLin: Real from Standard;
|
||||
thePln : Pln from gp;
|
||||
theTolPln: Real from Standard;
|
||||
theP :out Pnt from gp;
|
||||
theT :out Real from Standard;
|
||||
theTolP :out Real from Standard;
|
||||
theTmin :out Real from Standard;
|
||||
theTmax :out Real from Standard)
|
||||
returns Integer from Standard;
|
||||
|
||||
|
||||
end Tools;
|
||||
|
||||
Reference in New Issue
Block a user