0024157: Parallelization of assembly part of BO
[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-2012 OPEN CASCADE SAS
5 --
6 -- The content of this file is subject to the Open CASCADE Technology Public
7 -- License Version 6.5 (the "License"). You may not use the content of this file
8 -- except in compliance with the License. Please obtain a copy of the License
9 -- at http://www.opencascade.org and read it completely before using this file.
10 --
11 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 --
14 -- The Original Code and all software distributed under the License is
15 -- distributed on an "AS IS" basis, without warranty of any kind, and the
16 -- Initial Developer hereby disclaims all such warranties, including without
17 -- limitation, any warranties of merchantability, fitness for a particular
18 -- purpose or non-infringement. Please see the License for the specific terms
19 -- and conditions governing the rights and limitations under the License.
20
21
22
23 class Triangulation2D from DrawTrSurf inherits Drawable2D from Draw
24
25         ---Purpose: Used to display a 2d triangulation.
26         --          
27         --          Display internal edges in blue
28         --          Display boundary edges in red
29         --          Optional display of triangles and nodes indices.
30
31 uses
32     HArray1OfInteger from TColStd,
33     Triangulation from Poly,
34     Drawable3D    from Draw,
35     Display       from Draw,
36     Interpretor   from Draw,
37     OStream
38
39 is
40
41     Create(T : Triangulation from Poly)
42     returns mutable Triangulation2D from DrawTrSurf;
43     
44     Triangulation(me)
45     returns Triangulation from Poly;
46     
47     DrawOn(me; dis : in out Display);
48     
49     Copy(me) returns mutable Drawable3D from Draw
50     is redefined;
51         ---Purpose: For variable copy.
52         
53     Dump(me; S : in out OStream)
54     is redefined;
55         ---Purpose: For variable dump.
56
57     Whatis(me; I : in out Interpretor from Draw)
58     is redefined;
59         ---Purpose: For variable whatis command. Set  as a result  the
60         --          type of the variable.
61
62 fields
63
64     myTriangulation : Triangulation from Poly;
65     myInternals     : HArray1OfInteger from TColStd;
66     myFree          : HArray1OfInteger from TColStd;
67
68 end Triangulation2D;