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
|
-- File: Graphic2d.cdl
-- Created: Tue Jun 22 16:27:10 1993
-- Author: Jean Louis FRENKEL, Gerard Gras.
-- <jlf@stylox>
---Copyright: Matra Datavision 1993
package GGraphic2d
---Version:
---Purpose: This package permits the creation of 2d graphic curves
-- and set of curves in a in a visualiser.
-- It moved from the Graphic2d package to this package
-- since it required services from the UL GEOMETRY
--
---Keywords: Drawer, View, Graphic Object, Primitive, Line,
-- Circle, Polyline, Ellips, Curve, Image, Text, HidingText,
-- FramedText, Paragraph
---Warning:
---References:
uses
Graphic2d,
Aspect,
Geom2d,
Image,
MMgt,
gp,
OSD,
Quantity,
TCollection,
TColStd,
TShort,
TColGeom2d
is
class Curve ;
---Category: Set of primitive curves
--
class SetOfCurves;
---Category: Set Of Graphic primitives
-----------------------
-- Category: Exceptions
-----------------------
exception CurveDefinitionError inherits OutOfRange;
---Category: Exceptions
end GGraphic2d;
|