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
64
65
66
67
68
69
70
71
72
73
|
-- File: BRepPrim.cdl
-- Created: Wed Jul 24 16:40:38 1991
-- Author: Christophe MARION
-- <cma@sdsun1>
---Copyright: Matra Datavision 1991
package BRepPrim
---Purpose: this package implements the primitives of the
-- Primitives package with the BRep Topology
--
-- Contains :
-- a Builder implementing the Template from Primitives
--
-- The instantiations of the algorithms :
-- OneAxis
-- Wedge
--
-- The rotational primitives inherited from OneAxis
--
-- Revolution
-- Cylinder
-- Cone
-- Sphere
-- Torus
--
-- The class FaceBuilder is a tool to build a face
-- from a Geom surface.
uses
gp,
Geom2d,
Geom,
Primitives,
TopoDS,
BRep
is
class Builder;
deferred class OneAxis instantiates OneAxis from Primitives(
Shell from TopoDS,
Face from TopoDS,
Wire from TopoDS,
Edge from TopoDS,
Vertex from TopoDS,
Builder from BRepPrim);
class Revolution;
class Cylinder;
class Cone;
class Sphere;
class Torus;
class GWedge instantiates Wedge from Primitives(
Shell from TopoDS,
Face from TopoDS,
Wire from TopoDS,
Edge from TopoDS,
Vertex from TopoDS,
Builder from BRepPrim);
class Wedge;
class FaceBuilder;
end BRepPrim;
|