Interface IAxisDelta<T>
Defines the interface to a Delta type, which defines Major and Minor deltas used by IAxis
Namespace:
Assembly: .dll
Syntax
public interface IAxisDelta<T>
Type Parameters
| Name | Description |
|---|---|
| T |
Methods
getMajorDelta()
Gets the major delta value
Declaration
public abstract T getMajorDelta()
Returns
| Type | Description |
|---|---|
| T | The major delta |
getMinorDelta()
Gets the minor delta value
Declaration
public abstract T getMinorDelta()
Returns
| Type | Description |
|---|---|
| T | The minor delta value |
setMinorMajorDelta(T minorDelta, T majorDelta)
Set the minor and major delta value
Declaration
public abstract void setMinorMajorDelta(T minorDelta, T majorDelta)
Parameters
| Type | Name | Description |
|---|---|---|
| T | minorDelta | The new minor delta value |
| T | majorDelta | The new major delta value |