Rogue Wave Views Charts Package API Reference Guide |
Rogue Wave Views Documentation Home |
Class defining a transformation made of a logarithmic transformation to be applied to a coordinate. More...
#include <ilviews/charts/common.h>
Public Member Functions | |
IlvAffineChartTransformer (IlDouble multCoeff, IlDouble constCoeff, IlUInt logBase=0) | |
Constructor. More... | |
virtual void | applyElementaryTransfo (IlDouble &val) const |
Applies the elementary transformation to a value. More... | |
virtual void | applyInverseElementaryTransfo (IlDouble &val) const |
Applies the inverse of the elementary transformation to a value. More... | |
virtual IlBoolean | condToApplyElementaryTransfo () const |
Indicates whether the elementary transformation can be applied. More... | |
virtual IlBoolean | condToApplyInverseElementaryTransfo () const |
Indicates whether the inverse of the elementary transformation can be applied. More... | |
IlDouble | getConstCoeff () const |
Returns the constant coefficient. More... | |
IlDouble | getMultCoeff () const |
Returns the multiplicative coefficient. More... | |
void | setConstCoeff (IlDouble d) |
Sets the constant coefficient. More... | |
void | setMultCoeff (IlDouble d) |
Sets the multiplicative coefficient. More... | |
Public Member Functions inherited from IlvChartCoordinateTransformer | |
void | applyInverseLogTransfo (IlDouble &val) const |
Applies the inverse of the logarithmic transformation. More... | |
void | applyLogTransfo (IlDouble &val) const |
Applies the logarithmic transformation to a value. More... | |
IlUInt | getLogBase () const |
Returns the logarithmic base. More... | |
virtual IlBoolean | inverseTransformPoints (IlUInt pointsCount, IlvDoublePoint *points) const |
Applies the inverse transformation to points. More... | |
virtual IlBoolean | inverseTransformValue (IlDouble &val) const |
Applies the inverse transformation to a value. More... | |
virtual IlBoolean | inverseTransformValues (IlUInt valuesCount, IlDouble *values) const |
Applies the inverse transformation to values. More... | |
void | setLogBase (IlUInt base) |
Sets the logarithmic base. More... | |
virtual IlBoolean | transformPoints (IlUInt pointsCount, IlvDoublePoint *points) const |
Applies a transformation to data points. More... | |
virtual IlBoolean | transformValue (IlDouble &val) const |
Applies a transformation to a data value. More... | |
virtual IlBoolean | transformValues (IlUInt valuesCount, IlDouble *values) const |
Applies a transformation to data values. More... | |
virtual IlBoolean | validateInterval (IlvCoordInterval &interval) const |
Validates an interval. More... | |
virtual void | write (IlvOutputFile &file) const |
Writes the attributes of the current object in a file. More... | |
Public Member Functions inherited from IlvCoordinateTransformer | |
virtual | ~IlvCoordinateTransformer () |
Destructor. More... | |
virtual IlvCoordinateTransformer * | copy () const =0 |
Virtual copy constructor. More... | |
const IlvCoordinateInfo * | getOwner () const |
Returns the coordinate information that owns the current object. More... | |
virtual IlBoolean | inverseTransformInterval (IlvCoordInterval &itvl) const |
Applies the inverse transformation to an interval. More... | |
IlvOutputFile & | save (IlvOutputFile &file) const |
Writes a complete description of the current object in a file. More... | |
virtual IlBoolean | transformInterval (IlvCoordInterval &itvl) const |
Applies a transformation to an interval. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from IlvCoordinateTransformer | |
static IlvCoordinateTransformer * | Load (IlvInputFile &file) |
Reads a coordinate transformer object from a file. More... | |
Protected Member Functions inherited from IlvChartCoordinateTransformer | |
IlvChartCoordinateTransformer (IlUInt logBase) | |
Constructor. More... | |
IlvChartCoordinateTransformer (const IlvChartCoordinateTransformer &t) | |
Constructor. More... | |
IlvChartCoordinateTransformer (IlvInputFile &file) | |
Constructor. More... | |
Protected Member Functions inherited from IlvCoordinateTransformer | |
IlvCoordinateTransformer () | |
Constructor. More... | |
IlvCoordinateTransformer (const IlvCoordinateTransformer &transfo) | |
Constructor. More... | |
IlvCoordinateTransformer (IlvInputFile &file) | |
Constructor. More... | |
Class defining a transformation made of a logarithmic transformation to be applied to a coordinate.
Library: ilvcharts
This class is a subclass of IlvChartCoordinateTransformer
with an affine transformation as the elementary transformation. This means that an affine transformation is applied to the coordinate, followed by a logarithmic transformation if the logarithmic base is greater than 1
.
The affine transformation is defined as follows:
where c
is the initial coordinate, mult
is the multiplicative coefficient, const
is the constant coefficient, and c_transformed
is the coordinate transformed with the affine transformation.
IlvChartCoordinateTransformer
. IlvAffineChartTransformer::IlvAffineChartTransformer | ( | IlDouble | multCoeff, |
IlDouble | constCoeff, | ||
IlUInt | logBase = 0 |
||
) |
Constructor.
Initializes a new IlvAffineChartTransformer
object.
multCoeff | The multiplicative coefficient set for the affine transformation. |
constCoeff | The constant coefficient set for the affine transformation. |
logBase | The logarithmic base set for the current object. |
|
virtual |
Applies the elementary transformation to a value.
val | This parameter stores the value to transform and is also used to return the transformed value. |
The transformation applied is the following:
where c
is the initial coordinate, mult
is the multiplicative coefficient, const
is the constant coefficient, and c_transformed
is the coordinate transformed with the affine transformation.
Implements IlvChartCoordinateTransformer.
|
virtual |
Applies the inverse of the elementary transformation to a value.
val | This parameter stores the value to transform inversely and is also used to return the value once it has been inversely transformed. |
The inverse transformation applied is the following:
where c_transformed
is the transformed coordinate, mult
the multiplicative coefficient, const
the constant coefficient, and c
is the inversely transformed coordinate (that is, the value before the affine transformation).
Implements IlvChartCoordinateTransformer.
|
virtual |
Indicates whether the elementary transformation can be applied.
IlTrue
by default, since the elementary transformation is an affine transformation and, therefore, can always be applied. Implements IlvChartCoordinateTransformer.
|
virtual |
Indicates whether the inverse of the elementary transformation can be applied.
IlTrue
if the multiplicative coefficient is a value other than 0
, and IlFalse
otherwise. Implements IlvChartCoordinateTransformer.
IlDouble IlvAffineChartTransformer::getConstCoeff | ( | ) | const |
Returns the constant coefficient.
IlDouble IlvAffineChartTransformer::getMultCoeff | ( | ) | const |
Returns the multiplicative coefficient.
void IlvAffineChartTransformer::setConstCoeff | ( | IlDouble | d | ) |
Sets the constant coefficient.
d | The constant coefficient set for the affine transformation. |
void IlvAffineChartTransformer::setMultCoeff | ( | IlDouble | d | ) |
Sets the multiplicative coefficient.
d | The multiplicative coefficient set for the affine transformation. |
0
, otherwise the inverse of the affine transformation is not defined. © Copyright 2016, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.