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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
-- File: BRepOffsetAPI.cdl
-- Created: Mon Oct 11 16:29:02 1999
-- Author: Atelier CAS2000
-- <cas@h2ox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1999
package BRepOffsetAPI
uses
Standard,
StdFail,
gp,
GeomAbs,
Geom,
Approx,
TopoDS,
TopTools,
BRepAlgo,
BRepBuilderAPI,
BRepSweep,
BRepPrimAPI,
BRepFill,
Law,
Draft,
BRepOffset,
TColStd,
TCollection
is
--
-- Sweeping
--
class MakePipe; --- inherits MakeSweep from BRepPrimAPI
---Purpose: To create shape by pipe
class MakePipeShell; --- inherits MakeSweep from BRepPrimAPI
---Purpose: Numerous posibilities to create shell by sweeping
class MakeDraft; --- inherits MakeShape from BRepBuilderAPI
class DraftAngle; --- inherits MakeShape from BRepBuilderAPI
class FindContigousEdges;
---Purpose: find the contigous edges of shapes for control
-- (continuity C0, C1, ...)
alias Sewing is Sewing from BRepBuilderAPI;
---Purpose: sew the shapes along their common edges
--
-- Evolved and Offseting
--
class MakeOffset; --- inherits MakeShape from BRepBuilderAPI
---Purpose: Offsets to a set of plane wires.
class MakeOffsetShape; --- inherits MakeShape from BRepBuilderAPI
--Purpose: Offset shape to shells or solids.
class MakeThickSolid; --- inherits MakeOffsetShape from BRepOffsetAPI
---Purpose: Thick solid to shells or solids.
class MakeEvolved; --- inherits MakeShape from BRepBuilderAPI
--
-- Construction of Shape through sections.
--
class ThruSections; --- inherits MakeShape from BRepBuilderAPI
class NormalProjection ; --- inherits MakeShape from BRepBuilderAPI
--
-- Plate
--
class MakeFilling; --- inherits MakeShape from BRepBuilderAPI
---Purpose: N-Side Filling
-- This algorithm avoids to build a face from:
-- * a set of edges defining the bounds of the face and some
-- constraints the surface of the face has to satisfy
-- * a set of edges and points defining some constraints
-- the support surface has to satisfy
-- * an initial surface to deform for satisfying the constraints
-- * a set of parameters to control the constraints.
class SequenceOfSequenceOfReal instantiates
Sequence from TCollection (SequenceOfReal from TColStd);
class SequenceOfSequenceOfShape instantiates
Sequence from TCollection (SequenceOfShape from TopTools);
end;
|