Click or drag to resize
Transform Interface
Defines a custom transformation along an axis.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public interface Transform

The Transform type exposes the following members.

Methods
  NameDescription
Public methodMapUnitToUser
Maps points in the interval [0,1] to user coordinates.
Public methodMapUserToUnit
Maps user coordinates to the interval [0,1].
Public methodSetupMapping
Initializes the mappings between user and coordinate space.
Top
Remarks

Axis1D has built in support for linear and logarithmic transformations. Additional transformations can be specified by setting the "CustomTransform" attribute in an Axis1D to an Object that implements this interface.

The interface consists of two methods that must be implemented. Each method is the inverse of the other.

See Also