1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/src/ShapeFix/ShapeFix_IntersectionTool.cdl
abv d5f74e42d6 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-02-20 16:15:17 +04:00

110 lines
4.0 KiB
Plaintext

-- Created on: 2004-03-05
-- Created by: Sergey KUUL
-- Copyright (c) 2004-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 IntersectionTool from ShapeFix
---Purpose: Tool for fixing selfintersecting wire
-- and intersecting wires
uses
Face from TopoDS,
Edge from TopoDS,
Vertex from TopoDS,
ReShape from ShapeBuild,
WireData from ShapeExtend,
DataMapOfShapeBox2d from ShapeFix,
Curve from Geom2d,
Box2d from Bnd
is
Create(context: ReShape from ShapeBuild;
preci: Real; maxtol: Real =1.0) returns IntersectionTool from ShapeFix;
---Purpose: Constructor
Context (me) returns ReShape from ShapeBuild;
---Purpose: Returns context
---C++: inline
SplitEdge(me; edge: Edge from TopoDS; param: Real from Standard;
vert: Vertex from TopoDS; face: Face from TopoDS;
newE1: in out Edge from TopoDS; newE2: in out Edge from TopoDS;
preci: Real from Standard)
returns Boolean from Standard;
---Purpose: Split edge on two new edges using new vertex "vert"
-- and "param" - parameter for splitting
-- The "face" is necessary for pcurves and using TransferParameterProj
CutEdge(me; edge: Edge from TopoDS; pend: Real from Standard;
cut: Real from Standard; face: Face from TopoDS;
iscutline: in out Boolean from Standard)
returns Boolean from Standard;
---Purpose: Cut edge by parameters pend and cut
SplitEdge1(me; sewd: WireData from ShapeExtend;
face: Face from TopoDS;
num: Integer from Standard;
param: Real from Standard;
vert: Vertex from TopoDS;
preci: Real from Standard;
boxes: in out DataMapOfShapeBox2d from ShapeFix)
returns Boolean from Standard is private;
SplitEdge2(me; sewd: WireData from ShapeExtend;
face: Face from TopoDS;
num: Integer from Standard;
param1: Real from Standard;
param2: Real from Standard;
vert: Vertex from TopoDS;
preci: Real from Standard;
boxes: in out DataMapOfShapeBox2d from ShapeFix)
returns Boolean from Standard is private;
UnionVertexes(me; sewd: WireData from ShapeExtend;
edge1: in out Edge from TopoDS;
edge2: in out Edge from TopoDS;
num2: Integer from Standard;
boxes: in out DataMapOfShapeBox2d from ShapeFix;
B2: Box2d from Bnd)
returns Boolean from Standard is private;
FindVertAndSplitEdge(me; param1: Real from Standard;
edge1,edge2: Edge from TopoDS;
Crv1: Curve from Geom2d;
MaxTolVert: in out Real from Standard;
num1: in out Integer from Standard;
sewd: WireData from ShapeExtend;
face: Face from TopoDS;
boxes: in out DataMapOfShapeBox2d from ShapeFix;
aTmpKey: Boolean from Standard)
returns Boolean from Standard is private;
FixSelfIntersectWire(me; sewd: in out WireData from ShapeExtend;
face: Face from TopoDS;
NbSplit: in out Integer; NbCut: in out Integer;
NbRemoved: in out Integer)
returns Boolean from Standard;
FixIntersectingWires(me; face: in out Face from TopoDS)
returns Boolean from Standard;
fields
myContext : ReShape from ShapeBuild;
myPreci : Real from Standard;
myMaxTol : Real from Standard;
end IntersectionTool;