blob: ebeb2ff21336014146a7a0a04bc5349fa8379a54 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
-- File: BRepAdaptor2d_Curve2d.cdl
-- Created: Tue Jul 13 10:16:37 1993
-- Author: Remi LEQUETTE
-- <rle@nonox>
---Copyright: Matra Datavision 1993
class Curve2d from BRepAdaptor inherits Curve from Geom2dAdaptor
---Purpose: The Curve2d from BRepAdaptor allows to use an Edge
-- on a Face like a 2d curve. (curve in the
-- parametric space).
--
-- It has the methods of the class Curve2d from
-- Adpator.
--
-- It is created or initialized with a Face and an
-- Edge. The methods are inherited from Curve from
-- Geom2dAdaptor.
uses
Face from TopoDS,
Edge from TopoDS
raises
NullObject from Standard
is
Create returns Curve2d from BRepAdaptor;
---Purpose: Creates an uninitialized curve2d.
Create(E : Edge from TopoDS; F : Face from TopoDS)
returns Curve2d from BRepAdaptor
---Purpose: Creates with the pcurve of <E> on <F>.
raises
NullObject from Standard; -- if <E> has no pcurve on <F>
Initialize(me : in out; E : Edge from TopoDS; F : Face from TopoDS)
---Purpose: Initialize with the pcurve of <E> on <F>.
raises
NullObject from Standard -- if <E> has no pcurve on <F>
is static;
Edge(me) returns Edge from TopoDS
---Purpose: Returns the Edge.
--
---C++: return const &
is static;
Face(me) returns Face from TopoDS
---Purpose: Returns the Face.
--
---C++: return const &
is static;
fields
myEdge : Edge from TopoDS;
myFace : Face from TopoDS;
end Curve2d;
|