VR-Link API Documentation for HLA 1.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
linNorm.h
Go to the documentation of this file.
1 //********************************************************************
2 // Copyright (c) 2005 MaK Technologies, Inc.
3 // All rights reserved.
4 //********************************************************************
5 
6 
7 #ifndef linNorm_H_
8 #define linNorm_H_
9 
10 #include "hypNorm.h"
11 
13 {
14 public:
15  DtLinearNormalizer(double minValue, double maxValue);
16 
17  virtual ~DtLinearNormalizer();
18 
19  virtual unsigned long normalize();
20 
21  virtual void setMinValue(double min);
22  virtual void setMaxValue(double max);
23  virtual void setValue(double value);
24 
25  virtual double minValue() const;
26  virtual double maxValue() const;
27  virtual double value() const;
28 
29 protected:
30  double myMaxValue;
31  double myMinValue;
32  double myValue;
33 };
34 
35 #endif
36 

Document ID: Generated on Mon Apr 8 04:49:21 EDT 2019 from SVN revision 197403
Copyright © 2005-2016 VT MÄK. All Rights Reserved (www.mak.com)