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
|
-- File: ShapeUpgrade_ShapeDivideContinuity.cdl
-- Created: Fri Apr 30 17:01:47 1999
-- Author: data exchange team
-- <det@friendox.nnov.matra-dtv.fr>
---Copyright: Matra Datavision 1999
class ShapeDivideContinuity from ShapeUpgrade inherits ShapeDivide from ShapeUpgrade
---Purpose:
uses
Shape from TopoDS,
Shape from GeomAbs,
FaceDivide from ShapeUpgrade
is
Create returns ShapeDivideContinuity from ShapeUpgrade;
Create (S: Shape from TopoDS)
returns ShapeDivideContinuity from ShapeUpgrade;
---Purpose: Initialize by a Shape.
SetTolerance(me: in out; Tol: Real);
---Purpose: Sets tolerance.
SetTolerance2d(me: in out; Tol: Real);
---Purpose: Sets tolerance.
SetBoundaryCriterion (me: in out; Criterion: Shape from GeomAbs = GeomAbs_C1);
---Purpose:
-- Defines a criterion of continuity for the boundary (all the
-- Wires)
--
-- The possible values are C0, G1, C1, G2, C2, C3, CN The
-- default is C1 to respect the Cas.Cade Shape Validity. G1
-- and G2 are not authorized.
SetPCurveCriterion (me: in out; Criterion: Shape from GeomAbs = GeomAbs_C1);
---Purpose:
-- Defines a criterion of continuity for the boundary (all the
-- pcurves of Wires)
--
-- The possible values are C0, G1, C1, G2, C2, C3, CN The
-- default is C1 to respect the Cas.Cade Shape Validity. G1
-- and G2 are not authorized.
SetSurfaceCriterion (me: in out; Criterion: Shape from GeomAbs = GeomAbs_C1);
---Purpose:
-- Defines a criterion of continuity for the boundary (all the
-- Wires)
--
-- The possible values are C0, G1, C1, G2, C2, C3, CN The
-- default is C1 to respect the Cas.Cade Shape Validity. G1
-- and G2 are not authorized.
---Level: Internal
GetSplitFaceTool (me) returns FaceDivide from ShapeUpgrade
is redefined protected;
---Purpose: Returns the tool for dividing faces.
fields
myCurve3dCriterion: Shape from GeomAbs;
myCurve2dCriterion: Shape from GeomAbs;
mySurfaceCriterion : Shape from GeomAbs;
myTolerance3d: Real;
myTolerance2d: Real;
end ShapeDivideContinuity;
|