blob: 9adce95b645966c6f52e6e464fd3e08275232d38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
-- File: Edge.cdl
-- Created: Thu Nov 19 12:37:51 1992
-- Author: Remi LEQUETTE
-- <rle@phylox>
---Copyright: Matra Datavision 1992
class Edge from BRepClass
---Purpose: This class is used to send the description of an
-- Edge to the classifier. It contains an Edge and a
-- Face. So the PCurve of the Edge can be found.
uses
Edge from TopoDS,
Face from TopoDS
is
Create returns Edge from BRepClass;
Create (E : Edge from TopoDS; F : Face from TopoDS)
returns Edge from BRepClass;
Edge(me : in out) returns Edge from TopoDS
---C++: inline
---C++: return &
---C++: alias "const TopoDS_Edge& Edge() const;"
is static;
Face(me : in out) returns Face from TopoDS
---C++: inline
---C++: return &
---C++: alias "const TopoDS_Face& Face() const;"
is static;
fields
myEdge : Edge from TopoDS;
myFace : Face from TopoDS;
end Edge;
|