Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
irangeelementgeometryspace.h
1 #pragma once
2 
4 
5 namespace itascaxd {
9  class IRangeElementGeometrySpace { // name = "geometry"
10  public:
12  inline static const TType type_ = 0x4f201fa4;
14  virtual IRangeElement *getIRangeElement()=0;
15 
17  virtual QSet<QString> getNames() const=0;
19  virtual int getCount() const=0;
21  virtual bool getOdd() const=0;
23  virtual bool getEven() const=0;
25  virtual bool getClosedVolume() const =0;
27  virtual bool getOutsideVolume() const =0;
29  virtual DVect getDirection() const=0;
30 
32  virtual void setNames(const QSet<QString> &ns)=0;
34  virtual void addName(const QString &n)=0;
36  virtual void removeName(const QString &n)=0;
38  virtual void setCount(int sr)=0;
40  virtual void setDirection(const DVect &direct)=0;
42  virtual void setOdd(bool b)=0;
44  virtual void setEven(bool b)=0;
46  virtual void setClosedVolume(bool b)=0;
48  virtual void setOutsideVolume(bool b)=0;
49  signals:
51  virtual void namesChanged(const QSet<QString> &ns)=0;
53  virtual void nameAdded(const QString &n)=0;
55  virtual void nameRemoved(const QString &n)=0;
57  virtual void countChanged(int sr)=0;
59  virtual void directionChanged(const DVect &direct)=0;
61  virtual void oddChanged(bool b)=0;
63  virtual void evenChanged(bool b)=0;
65  virtual void closedVolumeChanged(bool b)=0;
67  virtual void outsideVolumeChanged(bool b)=0;
68  };
69 
70 } // namespace itascaxd
71 // EoF
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.
virtual void evenChanged(bool b)=0
Signal emitted when odd status has changed.
virtual IRangeElement * getIRangeElement()=0
Returns a pointer to itsel.
virtual void directionChanged(const DVect &direct)=0
Signal emitted when the direction has changed.
virtual DVect getDirection() const =0
Returns the direction from the range.
virtual void setClosedVolume(bool b)=0
set mode intersection with closed volume geom.set (inside closed volume)
virtual void closedVolumeChanged(bool b)=0
Signal emited when ClosedVolume status has changed.
virtual void countChanged(int sr)=0
Signal emitted when the spaceranger has changed.
Interface to a RangeElement of a geometry set, where you want objects withion a certain space to this...
Definition: irangeelementgeometryspace.h:9
Interface to a filter element, which is a member of a IRange..
Definition: irangeelement.h:18
virtual void outsideVolumeChanged(bool b)=0
Signal emited when OusideVolume status has changed.
virtual void setEven(bool b)=0
All even count numbers are considered in the range.
virtual void namesChanged(const QSet< QString > &ns)=0
Signal emitted when the geometry set list is changed.
virtual void setOdd(bool b)=0
All odd count numbers are considered in the range.
virtual void nameAdded(const QString &n)=0
Signal emitted when the geometry set is added.
unsigned int TType
class type indicator
Definition: basedef.h:41
virtual void oddChanged(bool b)=0
Signal emitted when odd status has changed.
virtual void setNames(const QSet< QString > &ns)=0
Sets the geometry set list to the range.
virtual bool getOutsideVolume() const =0
Indicates mode intersection from outside with closed volume geom.set (inside volume)
Itasca Library standard namespace, specific to 2D or 3D.
Definition: icontactmodule.h:4
virtual void nameRemoved(const QString &n)=0
Signal emitted when the geometry set is removed.
virtual int getCount() const =0
Returns the intersection count that matches this filter.
virtual void setOutsideVolume(bool b)=0
set mode intersection with closed volume geom.set (outside closed volume)
DVect3 DVect
Vector of doubles, either 2D or 3D.
Definition: dim.h:145
virtual void setCount(int sr)=0
Sets the spaceranger to the range.
static const TType type_
The type identification number for this class, for use in convert_cast() and convert_getcast().
Definition: irangeelementgeometryspace.h:12
virtual bool getEven() const =0
Indicates all even intersection counts match.
virtual void addName(const QString &n)=0
Adds the geometry set list to the range.
virtual void setDirection(const DVect &direct)=0
Sets the direction to the range.
virtual QSet< QString > getNames() const =0
Returns the list of geometry set associated with this range element.
virtual bool getOdd() const =0
Indicates all odd intersection counts match.
virtual void removeName(const QString &n)=0
Removes the geometry set list to the range.