Test for 0022778: Bug in BRepMesh
[occt.git] / src / GeomPlate / GeomPlate.cdl
CommitLineData
b311480e 1-- Created on: 1996-03-07
2-- Created by: Stagiaire Frederic CALOONE
3-- Copyright (c) 1996-1999 Matra Datavision
4-- Copyright (c) 1999-2012 OPEN CASCADE SAS
5--
6-- The content of this file is subject to the Open CASCADE Technology Public
7-- License Version 6.5 (the "License"). You may not use the content of this file
8-- except in compliance with the License. Please obtain a copy of the License
9-- at http://www.opencascade.org and read it completely before using this file.
10--
11-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13--
14-- The Original Code and all software distributed under the License is
15-- distributed on an "AS IS" basis, without warranty of any kind, and the
16-- Initial Developer hereby disclaims all such warranties, including without
17-- limitation, any warranties of merchantability, fitness for a particular
18-- purpose or non-infringement. Please see the License for the specific terms
19-- and conditions governing the rights and limitations under the License.
20
7fd59977 21-- Modified: Wed Mar 5 09:45:42 1997
22-- by: Joelle CHAUVET
23-- G1134 : convertion of a GeomPlate_Surface to a Geom_BSplineSurface
24-- by approximation with G0 or G1 criterion
25-- + no more reference to TopoDS
7fd59977 26
27package GeomPlate
28
29uses gp,
30 Adaptor3d,
31 Adaptor2d,
32 Law,
33 GeomFill,
34 TColgp,
35 Plate,
36 Geom,
37 math,
38 TColGeom,
39 TColGeom2d,
40 GeomAbs,
41 TCollection,
42 ElSLib,
43 StdFail,
44 ProjLib,
45 TColStd,
46 AdvApp2Var,
47 Geom2d,
48 Extrema,
49 GeomLProp
50
51
52is
53
54 class BuildPlateSurface ;
55 ---Purpose:
56 -- this class computes the plate surface corresponding to the constraints.
57
58
59 class Array1OfHCurveOnSurface
60 instantiates Array1 from TCollection ( HCurveOnSurface from Adaptor3d);
61
62 class HArray1OfHCurveOnSurface
63 instantiates HArray1 from TCollection (HCurveOnSurface from Adaptor3d, Array1OfHCurveOnSurface from GeomPlate);
64
65 class CurveConstraint;
66
67 class PointConstraint;
68
69
70 class Array1OfSequenceOfReal instantiates
71 Array1 from TCollection (SequenceOfReal from TColStd);
72
73 class HArray1OfSequenceOfReal instantiates
74 HArray1 from TCollection (SequenceOfReal from TColStd,
75 Array1OfSequenceOfReal from GeomPlate);
76
77 class SequenceOfCurveConstraint
78 instantiates Sequence from TCollection (CurveConstraint from GeomPlate);
79
80 class SequenceOfPointConstraint
81 instantiates Sequence from TCollection (PointConstraint from GeomPlate);
82
83 class HSequenceOfCurveConstraint
84 instantiates HSequence from TCollection (CurveConstraint from GeomPlate, SequenceOfCurveConstraint from GeomPlate );
85
86 class HSequenceOfPointConstraint
87 instantiates HSequence from TCollection (PointConstraint from GeomPlate, SequenceOfPointConstraint from GeomPlate );
88
89
90 class BuildAveragePlane;
91 --- Purpose:
92 -- this class computes the initial surface (average plane) in the cases when the initial surface is not
93 -- given.
94
95 class Surface;
96 ---Purpose:
97 -- this class describes the characteristics of the plate surface
98
99 class MakeApprox;
100 ---Purpose:
101 -- this class converts a GeomPlate_Surface to a Geom_BSplineSurface
102
103 class PlateG0Criterion;
104 ---Purpose:
105 -- inherits class Criterion from AdvApp2Var ;
106 -- this class contains a specific G0 criterion for GeomPlate_MakeApprox
107
108 class PlateG1Criterion;
109 ---Purpose:
110 -- inherits class Criterion from AdvApp2Var ;
111 -- this class contains a specific G1 criterion for GeomPlate_MakeApprox
112
113 class Aij;
114
115 class SequenceOfAij instantiates
116 Sequence from TCollection (Aij from GeomPlate);
117
118end;
119
120
121
122
123
124