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
|
-- File: GCPnts.cdl
-- Created: Fri Feb 22 09:24:30 1991
-- Author: Jean Claude Vauthier
-- <jcv@topsn3>
---Copyright: Matra Datavision 1991, 1992
package GCPnts
--- Purpose :
-- This package contains the geometric algorithmes used to
-- compute characteristic points on parametrized curves.
--
-- They are high level algorithms based on the low level
-- algorithms in CPnts.
---Level : Public.
-- All methods of all classes will be public.
uses Standard, TCollection, CPnts, Adaptor3d, Adaptor2d , gp, GeomAbs,
TColgp, StdFail, TColStd
is
enumeration AbscissaType
is LengthParametrized, Parametrized, AbsComposite end;
enumeration DeflectionType
is Linear, Circular, Curved, DefComposite end;
class AbscissaPoint;
class UniformAbscissa;
class UniformDeflection;
class QuasiUniformDeflection;
class QuasiUniformAbscissa;
class TangentialDeflection;
end GCPnts;
|