0025616: Avoid Classes using "new" to allocate Instances but not defining a copy...
[occt.git] / src / ProjLib / ProjLib_ProjectOnSurface.cdl
CommitLineData
b311480e 1-- Created on: 1994-09-15
2-- Created by: Bruno DUMORTIER
3-- Copyright (c) 1994-1999 Matra Datavision
973c2be1 4-- Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5--
973c2be1 6-- This file is part of Open CASCADE Technology software library.
b311480e 7--
d5f74e42 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
973c2be1 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.
b311480e 13--
973c2be1 14-- Alternatively, this file may be used under the terms of Open CASCADE
15-- commercial license or contractual agreement.
7fd59977 16
17class ProjectOnSurface from ProjLib
ff8178ef 18 ---Purpose: Project a curve on a surface. The result ( a 3D
19 -- Curve) will be an approximation
7fd59977 20uses
21
22 HCurve from Adaptor3d,
23 HSurface from Adaptor3d,
24 BSplineCurve from Geom
25
26is
27
28 Create
29 ---Purpose: Create an empty projector.
30 returns ProjectOnSurface from ProjLib;
31
32
33 Create( S : HSurface from Adaptor3d)
34 ---Purpose: Create a projector normaly to the surface <S>.
35 returns ProjectOnSurface from ProjLib;
36
37 Delete(me:out) is virtual;
38 ---C++: alias "Standard_EXPORT virtual ~ProjLib_ProjectOnSurface(){Delete() ; }"
39
40 Load(me : in out; S : HSurface from Adaptor3d)
41 ---Purpose: Set the Surface to <S>.
42 -- To compute the projection, you have to Load the Curve.
43 is static;
44
45 Load(me : in out; C : HCurve from Adaptor3d; Tolerance : Real)
46 ---Purpose: Compute the projection of the curve <C> on the Surface.
47 is static;
48
49 IsDone(me) returns Boolean ;
50
51 BSpline(me) returns BSplineCurve from Geom
52 is static ;
53
54fields
55
56 myCurve : HCurve from Adaptor3d ;
57 mySurface : HSurface from Adaptor3d ;
58 myTolerance : Real ;
59 myIsDone : Boolean ;
60 myResult : BSplineCurve from Geom ;
61
62end ProjectOnSurface;