0024750: Replace instantiations of TCollection generic classes by NCollection templat...
[occt.git] / src / AIS / AIS_GraphicTool.cdl
CommitLineData
b311480e 1-- Created on: 1997-02-10
2-- Created by: Robert COUBLANC
3-- Copyright (c) 1997-1999 Matra Datavision
973c2be1 4-- Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5--
973c2be1 6-- This file is part of Open CASCADE Technology software library.
b311480e 7--
d5f74e42 8-- This library is free software; you can redistribute it and/or modify it under
9-- the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10-- by the Free Software Foundation, with special exception defined in the file
11-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12-- distribution for complete text of the license and disclaimer of any warranty.
b311480e 13--
973c2be1 14-- Alternatively, this file may be used under the terms of Open CASCADE
15-- commercial license or contractual agreement.
b311480e 16
7fd59977 17class GraphicTool from AIS
18
19 ---Purpose:
20
21uses
22 Drawer from Prs3d,
23 TypeOfAttribute from AIS,
24 NameOfColor from Quantity,
25 Color from Quantity,
26 TypeOfLine from Aspect,
27 MaterialAspect from Graphic3d
28
29
30is
31
32 GetLineColor(myclass; aDrawer : Drawer from Prs3d; TheTypeOfAttributes : TypeOfAttribute from AIS)
33 returns NameOfColor from Quantity;
34
35 GetLineColor(myclass; aDrawer : Drawer from Prs3d;
36 TheTypeOfAttributes : TypeOfAttribute from AIS;
37 TheLineColor: out Color from Quantity);
38
39 GetLineWidth(myclass; aDrawer : Drawer from Prs3d; TheTypeOfAttributes : TypeOfAttribute from AIS)
40 returns Real from Standard;
41
42
43 GetLineType (myclass; aDrawer : Drawer from Prs3d; TheTypeOfAttributes : TypeOfAttribute from AIS)
44 returns TypeOfLine from Aspect;
45
46
47 GetLineAtt(myclass;
48 aDrawer : Drawer from Prs3d;
49 TheTypeOfAttributes : TypeOfAttribute from AIS;
50 aCol : in out NameOfColor from Quantity;
51 aWidth : in out Real from Standard;
52 aTyp : in out TypeOfLine from Aspect);
53
54
55 GetInteriorColor(myclass;
56 aDrawer : Drawer from Prs3d)
57 returns NameOfColor from Quantity;
58
59 GetInteriorColor(myclass;
60 aDrawer : Drawer from Prs3d;
61 aColor: out Color from Quantity);
62
63 GetMaterial(myclass; aDrawer:Drawer from Prs3d)
64 returns MaterialAspect from Graphic3d;
65
66end GraphicTool;
67