blob: 1d86cd77acb2be236596c3a0fa89d6bbef817472 (
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
|
-- File: PGeom2d.cdl
-- Created: Tue Apr 6 12:17:31 1993
-- Author: Philippe DAUTRY
-- <fid@mastox>
-- Copyright: Matra Datavision 1993
package PGeom2d
---Purpose : This package contains the definition of the
-- geometric persistent objects such as point, vector,
-- axis placement, curves, surfaces.
--
-- All these entities are defined in 2D space.
-- This package gives the possibility :
-- . to create geometric objects with given or default field values,
-- . to set field values,
-- . to get field values.
uses PColStd, gp, PColgp, GeomAbs
is
class Transformation from PGeom2d;
deferred class Geometry from PGeom2d;
deferred class Point from PGeom2d;
class CartesianPoint from PGeom2d;
deferred class Vector from PGeom2d;
class Direction from PGeom2d;
class VectorWithMagnitude from PGeom2d;
class AxisPlacement from PGeom2d;
deferred class Curve from PGeom2d;
class Line from PGeom2d;
deferred class Conic from PGeom2d;
class Circle from PGeom2d;
class Ellipse from PGeom2d;
class Hyperbola from PGeom2d;
class Parabola from PGeom2d;
deferred class BoundedCurve from PGeom2d;
class BezierCurve from PGeom2d;
class BSplineCurve from PGeom2d;
class TrimmedCurve from PGeom2d;
class OffsetCurve from PGeom2d;
end PGeom2d;
|