mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-17 23:53:20 +08:00
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.
89 lines
3.0 KiB
Plaintext
89 lines
3.0 KiB
Plaintext
-- Created on: 1994-03-30
|
|
-- Created by: Laurent BUCHARD
|
|
-- 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 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.
|
|
|
|
deferred class Intersection3d from TopClass
|
|
---Purpose: Template class for the intersection algorithm required
|
|
-- by the 3D classifications.
|
|
--
|
|
-- (a intersection point near the origin of the line, ie.
|
|
-- at a distance less or equal than <tolerance>, will be
|
|
-- returned even if it has a negative parameter.)
|
|
--
|
|
|
|
uses
|
|
Lin from gp,
|
|
Pnt from gp,
|
|
Face from TopoDS,
|
|
State from TopAbs,
|
|
IntersectionPoint from IntCurveSurface
|
|
|
|
is
|
|
|
|
Initialize;
|
|
---Purpose: Empty constructor.
|
|
|
|
Perform(me: in out; L : Lin from gp;
|
|
Prm : Real from Standard;
|
|
Tol : Real from Standard;
|
|
Face : Face from TopoDS)
|
|
---Purpose: Perform the intersection between the
|
|
-- segment L(0) ... L(Prm) and the Face <Face>.
|
|
--
|
|
-- Only the point with the smallest parameter on the
|
|
-- line is returned.
|
|
--
|
|
-- The Tolerance <Tol> is used to determine if the
|
|
-- first point of the segment is near the face. In
|
|
-- that case, the parameter of the intersection point
|
|
-- on the line can be a negative value (greater than -Tol).
|
|
is deferred;
|
|
|
|
|
|
IsDone(me)
|
|
---Purpose: True is returned when the intersection have been computed.
|
|
returns Boolean from Standard
|
|
is deferred;
|
|
|
|
|
|
HasAPoint(me)
|
|
---Purpose: True is returned if a point has been found.
|
|
returns Boolean from Standard
|
|
is deferred;
|
|
|
|
|
|
Point(me)
|
|
---Purpose: Returns the Intersection Point.
|
|
--
|
|
---C++: return const &
|
|
returns IntersectionPoint from IntCurveSurface
|
|
is deferred;
|
|
|
|
|
|
State(me)
|
|
---Purpose: Returns the state of the point on the face.
|
|
-- The values can be either TopAbs_IN
|
|
-- ( the point is in the face)
|
|
-- or TopAbs_ON
|
|
-- ( the point is on a boudary of the face).
|
|
|
|
returns State from TopAbs
|
|
is deferred;
|
|
|
|
---------------------- Loacl Geometry avec courbureS dans une
|
|
-- direction et la direction normale
|
|
end Intersection3d;
|
|
|