0024070: OpenGL capped object-level clipping planes
[occt.git] / src / MeshVS / MeshVS_DummySensitiveEntity.cdl
CommitLineData
b311480e 1-- Created on: 2003-09-29
2-- Created by: Alexander SOLOVYOV and Sergey LITONIN
3-- Copyright (c) 2003-2012 OPEN CASCADE SAS
4--
5-- The content of this file is subject to the Open CASCADE Technology Public
6-- License Version 6.5 (the "License"). You may not use the content of this file
7-- except in compliance with the License. Please obtain a copy of the License
8-- at http://www.opencascade.org and read it completely before using this file.
9--
10-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12--
13-- The Original Code and all software distributed under the License is
14-- distributed on an "AS IS" basis, without warranty of any kind, and the
15-- Initial Developer hereby disclaims all such warranties, including without
16-- limitation, any warranties of merchantability, fitness for a particular
17-- purpose or non-infringement. Please see the License for the specific terms
18-- and conditions governing the rights and limitations under the License.
19
7fd59977 20
21class DummySensitiveEntity from MeshVS inherits SensitiveEntity from SelectBasics
22
23 ---Purpose: This class allows to create owners to all elements or nodes,
24 -- both hidden and shown, but these owners user cannot select "by hands"
25 -- in viewer. They means for internal application tasks, for example, receiving
26 -- all owners, both for hidden and shown entities.
27uses
28 EntityOwner from SelectBasics,
29 ListOfBox2d from SelectBasics,
4269bd1b 30 PickArgs from SelectBasics,
7fd59977 31 Array1OfPnt2d from TColgp,
32
33 Box2d from Bnd
34
35is
36 Create ( OwnerId : EntityOwner from SelectBasics ) returns mutable DummySensitiveEntity from MeshVS;
37
38 Areas ( me: mutable;
39 aresult: in out ListOfBox2d from SelectBasics ) is redefined;
40
4269bd1b 41 Matches (me : mutable;
42 thePickArgs : PickArgs from SelectBasics;
43 theMatchDMin, theMatchDepth : out Real from Standard)
44 returns Boolean is redefined;
7fd59977 45
46 Matches ( me: mutable;
47 XMin, YMin, XMax, YMax, aTol: Real ) returns Boolean is redefined;
48
49 Matches ( me: mutable;
50 Polyline : Array1OfPnt2d from TColgp;
51 aBox : Box2d from Bnd;
52 aTol : Real ) returns Boolean is redefined;
53
54 Is3D ( me ) returns Boolean is redefined;
55
56 NeedsConversion ( me ) returns Boolean is redefined;
57
58 MaxBoxes ( me ) returns Integer is redefined;
59
60end DummySensitiveEntity;