1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-08 18:40:55 +03:00
occt/src/IntTools/IntTools_FClass2d.cdl
bugmaster b311480ed5 0023024: Update headers of OCCT files
Added appropriate copyright and license information in source files
2012-03-21 19:43:04 +04:00

119 lines
3.8 KiB
Plaintext
Executable File

-- Created on: 1995-03-22
-- Created by: Laurent BUCHARD
-- 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.
class FClass2d from IntTools
---Purpose: Class provides an algorithm to classify a 2d Point
--- in 2d space of face using boundaries of the face.
uses
Pnt2d from gp,
Face from TopoDS,
State from TopAbs,
SequenceOfInteger from TColStd,
SeqOfPtr from BRepTopAdaptor
is
Create
returns FClass2d from IntTools;
---Purpose:
--- Empty constructor
---
Create( F: Face from TopoDS;
Tol: Real from Standard)
returns FClass2d from IntTools;
---Purpose:
--- Initializes algorithm by the face F
--- and tolerance Tol
---
Init (me:out;
F: Face from TopoDS;
Tol: Real from Standard);
---Purpose:
--- Initializes algorithm by the face F
--- and tolerance Tol
---
PerformInfinitePoint(me)
returns State from TopAbs;
---Purpose:
--- Returns state of infinite 2d point relatively to (0, 0)
---
Perform(me;
Puv: Pnt2d from gp;
RecadreOnPeriodic: Boolean from Standard=Standard_True)
returns State from TopAbs;
---Purpose:
--- Returns state of the 2d point Puv.
--- If RecadreOnPeriodic is true (defalut value),
--- for the periodic surface 2d point, adjusted to period, is
--- classified.
---
Destroy(me: in out);
---C++: alias ~
---Purpose:
--- Destructor
---
TestOnRestriction(me;
Puv: Pnt2d from gp;
Tol: Real from Standard;
RecadreOnPeriodic: Boolean from Standard = Standard_True)
returns State from TopAbs;
---Purpose:
--- Test a point with +- an offset (Tol) and returns
--- On if some points are OUT an some are IN
-- (Caution: Internal use . see the code for more details)
---
--modified by NIZNHY-PKV Mon May 29 10:47:52 2006f
IsHole(me)
returns Boolean from Standard;
--modified by NIZNHY-PKV Mon May 29 10:47:54 2006t
fields
TabClass : SeqOfPtr from BRepTopAdaptor;
TabOrien : SequenceOfInteger from TColStd;
Toluv : Real from Standard;
Face : Face from TopoDS;
U1 : Real from Standard;
V1 : Real from Standard;
U2 : Real from Standard;
V2 : Real from Standard;
Umin : Real from Standard;
Umax : Real from Standard;
Vmin : Real from Standard;
Vmax : Real from Standard;
--modified by NIZNHY-PKV Mon May 29 10:44:12 2006f
myIsHole : Boolean from Standard;
--modified by NIZNHY-PKV Mon May 29 10:44:14 2006t
end FClass2d ;