0024710: Avoid including Handle_Class.hxx headers except where necessary
[occt.git] / src / ProjLib / ProjLib_ProjectOnSurface.cdl
1 -- Created on: 1994-09-15
2 -- Created by: Bruno DUMORTIER
3 -- Copyright (c) 1994-1999 Matra Datavision
4 -- Copyright (c) 1999-2014 OPEN CASCADE SAS
5 --
6 -- This file is part of Open CASCADE Technology software library.
7 --
8 -- This library is free software; you can redistribute it and/or modify it under
9 -- the terms of the GNU Lesser General Public License version 2.1 as published
10 -- by the Free Software Foundation, with special exception defined in the file
11 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 -- distribution for complete text of the license and disclaimer of any warranty.
13 --
14 -- Alternatively, this file may be used under the terms of Open CASCADE
15 -- commercial license or contractual agreement.
16
17 class ProjectOnSurface from ProjLib 
18
19 uses
20
21     HCurve       from Adaptor3d,
22     HSurface     from Adaptor3d,
23     BSplineCurve from Geom
24
25 is
26
27     Create 
28         ---Purpose:  Create an empty projector.
29     returns ProjectOnSurface from ProjLib;
30     
31
32     Create( S  : HSurface from Adaptor3d)
33         ---Purpose: Create a projector normaly to the surface <S>.
34     returns ProjectOnSurface from ProjLib;
35
36     Delete(me:out) is virtual;
37     ---C++: alias "Standard_EXPORT virtual ~ProjLib_ProjectOnSurface(){Delete() ; }"
38     
39     Load(me : in out; S : HSurface from Adaptor3d)
40         ---Purpose: Set the Surface to <S>.
41         --          To compute the projection, you have to Load the Curve.
42     is static;
43     
44     Load(me : in out; C : HCurve from Adaptor3d; Tolerance : Real)
45         ---Purpose: Compute the projection of the curve <C> on the Surface.
46     is static;
47
48     IsDone(me) returns Boolean ;
49     
50     BSpline(me) returns BSplineCurve from Geom  
51     is static ;
52
53 fields
54
55     myCurve      : HCurve   from Adaptor3d ;
56     mySurface    : HSurface from Adaptor3d ;
57     myTolerance  : Real ;
58     myIsDone     : Boolean ;
59     myResult     : BSplineCurve from Geom ;
60
61 end ProjectOnSurface;