blob: 35efe3ce9ea19a42dedeb12dc73918d5b2ee25de (
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
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
|
-- File: BRepExtrema.cdl
-- Created: Fri Dec 3 15:48:19 1993
-- Author: Christophe MARION
---Copyright: Matra Datavision 1993
package BRepExtrema
---Purpose: This package gives tools to compute extrema between
-- Shapes from BRep.
uses
Standard,
StdFail,
TopoDS,
GeomAdaptor,
BRepAdaptor,
gp,
Extrema,
TColStd,
TopTools,
TCollection,
Bnd
is
----------------------------------------------------------
-- Extrema between two Shapes with triangulation.
----------------------------------------------------------
imported Poly;
----------------------------------------------------------
-- Extrema between a Point and an Edge.
----------------------------------------------------------
imported ExtPC;
----------------------------------------------------------
-- Extrema between two Edges.
----------------------------------------------------------
imported ExtCC;
----------------------------------------------------------
-- Extrema between a Point and a Face.
----------------------------------------------------------
imported ExtPF;
----------------------------------------------------------
-- Extrema between an Edge and a Face.
----------------------------------------------------------
imported ExtCF;
----------------------------------------------------------
-- Extrema between two Faces.
----------------------------------------------------------
imported ExtFF;
----------------------------------------------------------
--
----------------------------------------------------------
exception UnCompatibleShape inherits DomainError;
----------------------------------------------------------
-- enumeration used to describe the type of the support solution:
-- IsVertex => The solution is a vertex.
-- IsOnEdge => The solution belongs to an Edge.
-- IsInFace => The solution is inside a Face.
----------------------------------------------------------
imported SupportType;
----------------------------------------------------------
-- This class gives tools to compute the minimum distance value
-- between two shapes and the corresponding couples of solution points.
----------------------------------------------------------
imported DistShapeShape;
----------------------------------------------------------
-- This class is used to store a solution on a Shape.
-- (used only by class DistShapeShape)
----------------------------------------------------------
imported SolutionElem;
----------------------------------------------------------
-- This sequence is used to store all the solution on each Shape.
----------------------------------------------------------
imported SeqOfSolution;
imported DistanceSS;
end BRepExtrema;
|