-- Created on: 1995-04-24 -- Created by: Bruno DUMORTIER -- Copyright (c) 1995-1999 Matra Datavision -- Copyright (c) 1999-2012 OPEN CASCADE SAS -- -- The content of this file is subject to the Open CASCADE Technology Public -- License Version 6.5 (the "License"). You may not use the content of this file -- except in compliance with the License. Please obtain a copy of the License -- at http://www.opencascade.org and read it completely before using this file. -- -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France. -- -- The Original Code and all software distributed under the License is -- distributed on an "AS IS" basis, without warranty of any kind, and the -- Initial Developer hereby disclaims all such warranties, including without -- limitation, any warranties of merchantability, fitness for a particular -- purpose or non-infringement. Please see the License for the specific terms -- and conditions governing the rights and limitations under the License. private class TrimEdgeTool from BRepFill ---Purpose: uses Bisec from Bisector, Edge from TopoDS, Pnt2d from gp, Curve from Geom2d, Geometry from Geom2d, SequenceOfPnt from TColgp, Curve from Geom2dAdaptor is Create returns TrimEdgeTool from BRepFill; Create( Bisec : Bisec from Bisector; S1, S2 : Geometry from Geom2d; Offset : Real from Standard) returns TrimEdgeTool from BRepFill; IntersectWith( me : in out; Edge1 , Edge2 : Edge from TopoDS; Params : in out SequenceOfPnt from TColgp) is static; AddOrConfuse ( me ; Start : Boolean from Standard; Edge1 , Edge2 : Edge from TopoDS; Params : in out SequenceOfPnt from TColgp) is static; IsInside( me; P : Pnt2d from gp) returns Boolean from Standard is static; fields isPoint1 : Boolean from Standard; isPoint2 : Boolean from Standard; myP1 : Pnt2d from gp; myP2 : Pnt2d from gp; myC1 : Curve from Geom2d; myC2 : Curve from Geom2d; myOffset : Real from Standard; myBisec : Bisec from Bisector; myBis : Curve from Geom2dAdaptor; end TrimEdgeTool;