blob: 37d074073e8bc9e6c362854170d293e547700d0f (
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
|
-- File: ShapeUpgrade_FixSmallBezierCurves.cdl
-- Created: Wed Jun 7 16:50:55 2000
-- Author: Galina KULIKOVA
-- <gka@zamox.nnov.matra-dtv.fr>
---Copyright: Matra Datavision 2000
class FixSmallBezierCurves from ShapeUpgrade inherits FixSmallCurves from ShapeUpgrade
---Purpose:
uses
--HArray1OfCurve from TColGeom,
--HArray1OfCurve from TColGeom2d,
--HSequenceOfReal from TColStd,
Edge from TopoDS,
Face from TopoDS,
Curve from Geom,
Curve from Geom2d,
Status from ShapeExtend
is
Create returns FixSmallBezierCurves from ShapeUpgrade;
---Purpose :
Approx(me : mutable; Curve3d : out Curve from Geom;
Curve2d : out Curve from Geom2d;
Curve2dR : out Curve from Geom2d;
First, Last : in out Real) returns Boolean is redefined;
--Perform(me : mutable; theSegments3d :in out HArray1OfCurve from TColGeom;
-- theKnots3d : in out HSequenceOfReal from TColStd;
-- theSegments2d :in out HArray1OfCurve from TColGeom2d;
-- theKnots2d : in out HSequenceOfReal from TColStd) returns Boolean is redefined;
---Purpose :
end FixSmallBezierCurves;
|