public class OffsetLinearScale extends Object implements Scale
Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
| Constructor and Description |
|---|
OffsetLinearScale(double conversionFactorToStandardUnit,
double offsetToStandardUnit)
Construct a Scale for linear transformations with an offset, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
double |
fromStandardUnit(double value)
Convert a value from an SI value to a value in the unit that uses this scale.
|
double |
getConversionFactorToStandardUnit() |
double |
getOffsetToStandardUnit() |
double |
toStandardUnit(double value)
Convert a value to an SI value using this scale.
|
public OffsetLinearScale(double conversionFactorToStandardUnit,
double offsetToStandardUnit)
conversionFactorToStandardUnit - the conversion factor by which this number has to be multiplied to convert it to
the standard (e.g., SI) unit.offsetToStandardUnit - the offset that has to be taken into account for conversions; when converting to a standard
unit, the offset is applied first.public final double toStandardUnit(double value)
toStandardUnit in interface Scalevalue - the value to convertpublic final double fromStandardUnit(double value)
fromStandardUnit in interface Scalevalue - the value to convertpublic final double getConversionFactorToStandardUnit()
public final double getOffsetToStandardUnit()
Copyright © 2015–2016 Delft University of Technology. All rights reserved.