Test for 0022778: Bug in BRepMesh
[occt.git] / src / BRepAdaptor / BRepAdaptor.cdl
CommitLineData
b311480e 1-- Created on: 1993-02-19
2-- Created by: Remi LEQUETTE
3-- Copyright (c) 1993-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
22
23package BRepAdaptor
24
25 ---Purpose: The BRepAdaptor package provides classes to access
26 -- the geometry of the BRep models.
27 --
28 -- OverView of classes
29 --
30 -- * Surface : Provides the methods of Surface from
31 -- Adpator on a Face.
32 --
33 -- * Curve : Provides the methods of Curve from
34 -- Adaptor3d on an Edge.
35 --
36 -- * Curve2d : Provides the methods of Curve2d from
37 -- Adaptor2d on an Edge on a Face.
38 --
39
40uses
41 gp,
42 TCollection,
43 TColgp,
44 TColStd,
45 GeomAbs,
46 Adaptor3d,
47 Adaptor2d,
48 Geom,
49 Geom2d,
50 GeomAdaptor,
51 Geom2dAdaptor,
52 TopoDS,
53 BRep
54
55is
56
57 class Surface;
58 ---Purpose: Transforms a Face in a Surface from Adaptor3d.
59
60 class Curve;
61 ---Purpose: Transforms an Edge in a Curve from Adaptor3d.
62
63 class Curve2d;
64 ---Purpose: Transforms an Edge on a Face in a Curve2d from
65 -- Adaptor2d.
66
67 class CompCurve;
68 ---Purpose: Transforms a Wire in a Curve from Adaptor3d.
69
70 class HSurface instantiates GenHSurface from Adaptor3d
71 (Surface from BRepAdaptor);
72
73 class HCurve instantiates GenHCurve from Adaptor3d
74 (Curve from BRepAdaptor);
75
76 class HCurve2d instantiates GenHCurve2d from Adaptor2d
77 (Curve2d from BRepAdaptor);
78
79 class HCompCurve instantiates GenHCurve from Adaptor3d
80 (CompCurve from BRepAdaptor);
81
82 class Array1OfCurve
83 instantiates Array1 from TCollection (Curve from BRepAdaptor);
84
85 class HArray1OfCurve
86 instantiates HArray1 from TCollection (Curve from BRepAdaptor,
87 Array1OfCurve from BRepAdaptor);
88
89end BRepAdaptor;