Open Inventor Release 2024.2.0
 
Loading...
Searching...
No Matches
PoIntervalCellFilter.h
1/*=======================================================================
2 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4 *** ***
5 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8 *** ***
9 *** RESTRICTED RIGHTS LEGEND ***
10 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15 *** ***
16 *** COPYRIGHT (C) 1996-2018 BY FEI S.A.S, ***
17 *** BORDEAUX, FRANCE ***
18 *** ALL RIGHTS RESERVED ***
19**=======================================================================*/
20/*=======================================================================
21** Author : VSG (MMM YYYY)
22**=======================================================================*/
23
24#ifndef _PO_INTERVAL_CELL_FILTER_
25#define _PO_INTERVAL_CELL_FILTER_
26
27#include <Inventor/fields/SoSFFloat.h>
28#include <Inventor/fields/SoSFBool.h>
29#include <MeshViz/nodes/PoCellFilter.h>
30
31class SoFieldSensor ;
32
44 SO_NODE_HEADER(PoIntervalCellFilter) ;
45
46 public:
47
49
55
60
71
78 SbBool acceptCell(int cell_index, float cell_value) const;
79
80 /*----------------------------------------------------------------------------*/
81 private:
82 static void initClass() ;
83 static void exitClass() ;
84
85 private:
86 virtual ~PoIntervalCellFilter() ;
87
88
89 private:
90 static void changeCB(void *data, SoSensor *) ;
91
92 SbBool m_filterChanged;
93 SoFieldSensor *m_minSensor;
94 SoFieldSensor *m_maxSensor;
95 SoFieldSensor *m_inSensor;
96} ;
97
98/*----------------------------------------------------------------------------*/
99
100#endif /* _PO_INTERVAL_CELL_FILTER_ */
101
102
<a href="IconLegend.html"><img src="extMV.gif" alt="MeshViz" border="0"></a> Interface class defining...
<a href="IconLegend.html"><img src="extMV.gif" alt="MeshViz" border="0"></a> Node class to define a f...
SoSFBool in
Specifies if accepted cells are those whose value is inside or outside the interval ]min,...
SoSFFloat min
Specifies the min limit of the float interval.
SbBool acceptCell(int cell_index, float cell_value) const
See PoCellFilter::acceptCell().
SoSFFloat max
Specifies the max limit of the float interval.
Sensor class that can be attached to Open Inventor fields.
Field containing a single Boolean value.
Definition SoSFBool.h:79
Field containing a floating-point value.
Definition SoSFFloat.h:78
Abstract base class for Open Inventor sensors.
Definition SoSensor.h:100
int SbBool
Boolean type.
Definition SbBase.h:87