0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / LocalAnalysis / LocalAnalysis.cdl
1 -- Created on: 1996-07-24
2 -- Created by: Herve LOUESSARD
3 -- Copyright (c) 1996-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 package LocalAnalysis  
18
19     ---Purpose:
20     -- This package gives tools to check the local continuity 
21     -- between two  points situated  on two curves or two surfaces. 
22
23 uses
24
25     Standard,
26     StdFail,
27     LProp,
28     GeomAbs,
29     Geom,
30     Geom2d,
31     GeomLProp,
32     gp
33     
34 is
35
36
37 --  enumeration used to describe the  status error 
38    
39 enumeration  StatusErrorType   is  NullFirstDerivative, NullSecondDerivative, 
40                                  TangentNotDefined,NormalNotDefined,
41                                  CurvatureNotDefined         
42 end  StatusErrorType; 
43
44      
45     class SurfaceContinuity;
46
47     class CurveContinuity; 
48     ---Purpose:
49     -- This  class  compute
50     -- s  and gives  tools to check  the  local
51     -- continuity  between two points situated  on 2  curves) 
52     
53     
54     
55    
56     Dump( surfconti : SurfaceContinuity from LocalAnalysis;
57           o: in out OStream);   
58     ---Purpose:
59     -- This fonction gives informations  about a  variable CurveContinuity
60           
61     Dump( curvconti : CurveContinuity from LocalAnalysis;
62           o: in out OStream);   
63     ---Purpose:
64     -- This fonction gives informations  about a variable SurfaceContinuity 
65           
66                   
67 end LocalAnalysis; 
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87