mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
The copying permission statements at the beginning of source files updated to refer to LGPL. Copyright dates extended till 2014 in advance.
128 lines
3.4 KiB
Plaintext
128 lines
3.4 KiB
Plaintext
-- Created on: 1994-03-21
|
|
-- Created by: Jean Marc LACHAUME
|
|
-- Copyright (c) 1994-1999 Matra Datavision
|
|
-- Copyright (c) 1999-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 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.
|
|
|
|
deferred generic class Intersector from HatchGen
|
|
(TheCurveH as any ; -- as Curve from Geom2dAdaptor
|
|
TheCurveE as any ) -- as Curve from Geom2dAdaptor
|
|
|
|
|
|
inherits Intersection from IntRes2d
|
|
|
|
uses
|
|
Lin2d from gp,
|
|
Dir2d from gp
|
|
|
|
|
|
|
|
|
|
is
|
|
|
|
Initialize
|
|
|
|
---Purpose: Creates an empty intersector
|
|
|
|
is protected ;
|
|
|
|
|
|
Initialize(Confusion : Real from Standard ;
|
|
Tangency : Real from Standard)
|
|
|
|
---Purpose: Creates an intersector.
|
|
is protected ;
|
|
|
|
|
|
ConfusionTolerance (me)
|
|
|
|
---Purpose: Returns the confusion tolerance of the
|
|
-- intersector.
|
|
|
|
returns Real from Standard
|
|
is static ;
|
|
|
|
|
|
SetConfusionTolerance (me : in out ;
|
|
Confusion : Real from Standard)
|
|
|
|
---Purpose: Sets the confusion tolerance of the intersector.
|
|
|
|
is static ;
|
|
|
|
|
|
TangencyTolerance (me)
|
|
|
|
---Purpose: Returns the tangency tolerance of the
|
|
-- intersector.
|
|
|
|
returns Real from Standard
|
|
is static ;
|
|
|
|
|
|
SetTangencyTolerance (me : in out ;
|
|
Tangency : Real from Standard)
|
|
|
|
---Purpose: Sets the tangency tolerance of the intersector.
|
|
|
|
is static ;
|
|
|
|
|
|
Intersect (me : in out ; C1 : in out TheCurveE ;
|
|
C2 : in out TheCurveH )
|
|
|
|
---Purpose: Intersects the curves C1 and C2.
|
|
-- The results are retreived by the usual methods
|
|
-- described in IntRes2d_Intersection.
|
|
|
|
is static ;
|
|
|
|
-------------------------------------------------------------------------
|
|
---- M e t h o d s u s e d b y t h e C l a s s i f i e r 2 d ---
|
|
-------------------------------------------------------------------------
|
|
|
|
|
|
Perform(me : in out;
|
|
L : Lin2d from gp;
|
|
P : Real from Standard;
|
|
Tol : Real from Standard;
|
|
E : TheCurveE)
|
|
|
|
---Purpose: Performs the intersection between the 2d line
|
|
-- segment (<L>, <P>) and the Curve <E>. The line
|
|
-- segment is the part of the 2d line <L> of
|
|
-- parameter range [0, <P>] (P is positive and can be
|
|
-- RealLast()). Tol is the Tolerance on the segment.
|
|
-- The order is relevant, the first argument is the
|
|
-- segment, the second the Edge.
|
|
is static;
|
|
|
|
LocalGeometry(me;
|
|
E : TheCurveE ;
|
|
U : Real from Standard;
|
|
T : out Dir2d from gp;
|
|
N : out Dir2d from gp;
|
|
C : out Real)
|
|
|
|
---Purpose: Returns in <T>, <N> and <C> the tangent, normal
|
|
-- and curvature of the edge <E> at parameter value
|
|
-- <U>.
|
|
is static;
|
|
|
|
|
|
end Intersector from HatchGen ;
|
|
|
|
|
|
|
|
|