FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
ThresholdVolumeRenderer.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace fast {
6 
7 class FAST_EXPORT ThresholdVolumeRenderer : public VolumeRenderer {
9  public:
10  void setThreshold(float threshold);
11  protected:
12  void draw(Matrix4f perspectiveMatrix, Matrix4f viewingMatrix, float zNear, float zFar, bool mode2D) override;
13  float m_threshold = 0;
14  private:
16 };
17 
18 }
fast
Definition: AffineTransformation.hpp:7
VolumeRenderer.hpp
fast::VolumeRenderer
Definition: VolumeRenderer.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
fast::ThresholdVolumeRenderer
Definition: ThresholdVolumeRenderer.hpp:7