0024157: Parallelization of assembly part of BO
[occt.git] / src / DrawTrSurf / DrawTrSurf_Triangulation.cdl
CommitLineData
b311480e 1-- Created on: 1995-03-06
2-- Created by: Laurent PAINNOT
3-- Copyright (c) 1995-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
7fd59977 21
22
23class Triangulation from DrawTrSurf inherits Drawable3D from Draw
24
25 ---Purpose: Used to display a triangulation.
26 --
27 -- Display internal edges in blue
28 -- Display boundary edges in red
29 -- Optional display of triangles and nodes indices.
30
31uses
32 HArray1OfInteger from TColStd,
33 Triangulation from Poly,
34 Display from Draw,
35 Interpretor from Draw,
36 OStream
37
38is
39
40 Create(T : Triangulation from Poly)
41 returns mutable Triangulation from DrawTrSurf;
42
43 Triangulation(me)
44 returns Triangulation from Poly;
45
46 ShowNodes(me : mutable; B : Boolean);
47
48 ShowNodes(me) returns Boolean;
49
50 ShowTriangles(me : mutable; B : Boolean);
51
52 ShowTriangles(me) returns Boolean;
53
54 DrawOn(me; dis : in out Display);
55
56 Copy(me) returns mutable Drawable3D from Draw
57 is redefined;
58 ---Purpose: For variable copy.
59
60 Dump(me; S : in out OStream)
61 is redefined;
62 ---Purpose: For variable dump.
63
64 Whatis(me; I : in out Interpretor from Draw)
65 is redefined;
66 ---Purpose: For variable whatis command. Set as a result the
67 -- type of the variable.
68
69fields
70
71 myTriangulation : Triangulation from Poly;
72 myInternals : HArray1OfInteger from TColStd;
73 myFree : HArray1OfInteger from TColStd;
74 myNodes : Boolean;
75 myTriangles : Boolean;
76
77end Triangulation;