0024510: Remove unused local variables
[occt.git] / src / IntPatch / IntPatch_ALineToWLine.cdl
CommitLineData
b311480e 1-- Created on: 1993-11-26
2-- Created by: Modelistation
3-- Copyright (c) 1993-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--
973c2be1 8-- This library is free software; you can redistribute it and / or modify it
9-- under the terms of the GNU Lesser General Public 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.
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 ALineToWLine from IntPatch
18
19uses
20 WLine from IntPatch,
21 ALine from IntPatch,
22 Quadric from IntSurf
23
24is
25
26 Create(Quad1 : Quadric from IntSurf;
27 Quad2 : Quadric from IntSurf)
28
29 returns ALineToWLine from IntPatch;
30
31 Create(Quad1 : Quadric from IntSurf;
32 Quad2 : Quadric from IntSurf;
33 Deflection : Real from Standard;
34 PasMaxUV : Real from Standard;
35 NbMaxPoints : Integer from Standard)
36
37 returns ALineToWLine from IntPatch;
38
39
40 SetTolParam(me:out;
41 aT:Real from Standard);
42
43 TolParam(me)
44 returns Real from Standard;
45
46 SetTolOpenDomain(me:out;
47 aT:Real from Standard);
48
49 TolOpenDomain(me)
50 returns Real from Standard;
51
52 SetTolTransition(me:out;
53 aT:Real from Standard);
54
55 TolTransition(me)
56 returns Real from Standard;
57
58 SetTol3D(me:out;
59 aT:Real from Standard);
60
61 Tol3D(me)
62 returns Real from Standard;
63
64 SetConstantParameter(me);
65
66 SetUniformAbscissa(me);
67
68 SetUniformDeflection(me);
69
70 MakeWLine(me; aline: ALine from IntPatch)
71
72 returns WLine from IntPatch;
73
74 MakeWLine(me; aline: ALine from IntPatch; paraminf,paramsup: Real from Standard)
75 returns WLine from IntPatch;
76
77fields
78 quad1 : Quadric from IntSurf;
79 quad2 : Quadric from IntSurf;
80 deflectionmax : Real from Standard;
7fd59977 81 nbpointsmax : Integer from Standard;
82 type : Integer from Standard; -- 0: Constant Parameter
83 -- 1: Uniform Abscissa
84 -- 2: Uniform Deflection
85 myTolParam : Real from Standard;
86 myTolOpenDomain : Real from Standard;
87 myTolTransition : Real from Standard;
88 myTol3D : Real from Standard;
89
90end;