blob: 2ef1c29f36bb781f35d1a0fc39025a559f13f26e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
-- File: AIS_C0RegularityFilter.cdl
-- Created: Wed Feb 4 17:46:39 1998
-- Author: Julia GERASIMOVA
-- <jgv@orthodox.nnov.matra-dtv.fr>
---Copyright: Matra Datavision 1998
class C0RegularityFilter from AIS inherits Filter from SelectMgr
---Purpose:
uses
EntityOwner from SelectMgr,
Shape from TopoDS,
ShapeEnum from TopAbs,
MapOfShape from TopTools
is
Create( aShape : Shape from TopoDS )
returns mutable C0RegularityFilter from AIS;
ActsOn( me; aType : ShapeEnum from TopAbs )
returns Boolean from Standard
is redefined;
IsOk( me; EO : EntityOwner from SelectMgr )
returns Boolean from Standard is redefined virtual;
fields
myMapOfEdges : MapOfShape from TopTools;
end C0RegularityFilter;
|