0024428: Implementation of LGPL license
[occt.git] / src / DrawTrSurf / DrawTrSurf_Triangulation2D.cdl
1 -- Created on: 1997-07-22
2 -- Created by: Laurent PAINNOT
3 -- Copyright (c) 1997-1999 Matra Datavision
4 -- Copyright (c) 1999-2014 OPEN CASCADE SAS
5 --
6 -- This file is part of Open CASCADE Technology software library.
7 --
8 -- This library is free software; you can redistribute it and / or modify it
9 -- under the terms of the GNU Lesser General Public version 2.1 as published
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.
13 --
14 -- Alternatively, this file may be used under the terms of Open CASCADE
15 -- commercial license or contractual agreement.
16
17 class Triangulation2D from DrawTrSurf inherits Drawable2D from Draw
18
19         ---Purpose: Used to display a 2d triangulation.
20         --          
21         --          Display internal edges in blue
22         --          Display boundary edges in red
23         --          Optional display of triangles and nodes indices.
24
25 uses
26     HArray1OfInteger from TColStd,
27     Triangulation from Poly,
28     Drawable3D    from Draw,
29     Display       from Draw,
30     Interpretor   from Draw,
31     OStream
32
33 is
34
35     Create(T : Triangulation from Poly)
36     returns mutable Triangulation2D from DrawTrSurf;
37     
38     Triangulation(me)
39     returns Triangulation from Poly;
40     
41     DrawOn(me; dis : in out Display);
42     
43     Copy(me) returns mutable Drawable3D from Draw
44     is redefined;
45         ---Purpose: For variable copy.
46         
47     Dump(me; S : in out OStream)
48     is redefined;
49         ---Purpose: For variable dump.
50
51     Whatis(me; I : in out Interpretor from Draw)
52     is redefined;
53         ---Purpose: For variable whatis command. Set  as a result  the
54         --          type of the variable.
55
56 fields
57
58     myTriangulation : Triangulation from Poly;
59     myInternals     : HArray1OfInteger from TColStd;
60     myFree          : HArray1OfInteger from TColStd;
61
62 end Triangulation2D;