UnaryTransform.cxx
Go to the documentation of this file.
1 
12 #include "UnaryTransform.h"
13 
14 #include <cassert>
15 
16 namespace hippodraw {
17 
18 UnaryTransform::UnaryTransform ( double low, double high )
19  : m_limits ( low, high )
20 {
21 }
22 
24 {
25 }
26 
27 /* virtual */
28 const Range & UnaryTransform::limits () const
29 {
30  return m_limits;
31 }
32 
33 } // namespace hippodraw
34 
UnaryTransform class interface.
UnaryTransform(double low, double high)
Constructor for setting m_limits.
virtual const Range & limits() const
Returns a Range whose values are the limits on the coordinate.
virtual ~UnaryTransform()
The virtual destructor.
Expresses a range of values.
Definition: Range.h:33
const Range m_limits
The valid Range of the transform.

Generated for HippoDraw Class Library by doxygen