Itasca C++ Interface
irangeelementgeometryspace.h
1 #pragma once
2 
4 
5 namespace itascaxd {
9  class IRangeElementGeometrySpace { // name = "geometry"
10  public:
12  inline static const TType type_ = 0x4f201fa4;
13 
14  shared::Signal<const QSet<QString> &> namesChanged;
15  shared::Signal<const QString &> nameAdded;
16  shared::Signal<const QString &> nameRemoved;
17  shared::Signal<int32> countChanged;
18  shared::Signal<const DVect &> directionChanged;
19  shared::Signal<bool> oddChanged;
20  shared::Signal<bool> evenChanged;
21  shared::Signal<bool> closedVolumeChanged;
22  shared::Signal<bool> outsideVolumeChanged;
23 
26 
28  virtual QSet<QString> getNames() const=0;
30  virtual int getCount() const=0;
32  virtual bool getOdd() const=0;
34  virtual bool getEven() const=0;
36  virtual bool getClosedVolume() const =0;
38  virtual bool getOutsideVolume() const =0;
40  virtual DVect getDirection() const=0;
41 
43  virtual void setNames(const QSet<QString> &ns)=0;
45  virtual void addName(const QString &n)=0;
47  virtual void removeName(const QString &n)=0;
49  virtual void setCount(int sr)=0;
51  virtual void setDirection(const DVect &direct)=0;
53  virtual void setOdd(bool b)=0;
55  virtual void setEven(bool b)=0;
57  virtual void setClosedVolume(bool b)=0;
59  virtual void setOutsideVolume(bool b)=0;
60  };
61 
62 } // namespace itascaxd
63 // EoF
Interface to a RangeElement of a geometry set, where you want objects withion a certain space to this...
Definition: irangeelementgeometryspace.h:9
virtual DVect getDirection() const =0
Returns the direction from the range.
virtual IRangeElement * getIRangeElement()=0
Returns a pointer to itsel.
virtual void addName(const QString &n)=0
Adds the geometry set list to the range.
virtual bool getOutsideVolume() const =0
Indicates mode intersection from outside with closed volume geom.set (inside volume)
virtual bool getOdd() const =0
Indicates all odd intersection counts match.
virtual void setNames(const QSet< QString > &ns)=0
Sets the geometry set list to the range.
virtual void setOdd(bool b)=0
All odd count numbers are considered in the range.
virtual void setDirection(const DVect &direct)=0
Sets the direction to the range.
virtual int getCount() const =0
Returns the intersection count that matches this filter.
virtual void setClosedVolume(bool b)=0
set mode intersection with closed volume geom.set (inside closed volume)
virtual void removeName(const QString &n)=0
Removes the geometry set list to the range.
virtual QSet< QString > getNames() const =0
Returns the list of geometry set associated with this range element.
static const TType type_
The type identification number for this class, for use in convert_cast() and convert_getcast().
Definition: irangeelementgeometryspace.h:12
virtual void setEven(bool b)=0
All even count numbers are considered in the range.
virtual bool getEven() const =0
Indicates all even intersection counts match.
virtual void setOutsideVolume(bool b)=0
set mode intersection with closed volume geom.set (outside closed volume)
virtual void setCount(int sr)=0
Sets the spaceranger to the range.
virtual bool getClosedVolume() const =0
Indicates mode intersection from inside with closed volume geom.set (inside volume)
Interface to a filter element, which is a member of a IRange..
Definition: irangeelement.h:19
uint32 TType
class type indicator
Definition: basedef.h:46
DVect3 DVect
Vector of doubles, either 2D or 3D.
Definition: dim.h:150
Interface to a filter element, which is a member of a IRange.
Itasca Library standard namespace, specific to 2D or 3D.
Definition: icontactmodule.h:4