PolarMapUserToDevice Method |
Map the polar coordinates (userRadius,userAngle) to the device coordinates devXY.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public override void MapUserToDevice(
double userRadius,
double userTheta,
int[] devXY
)
Public Overrides Sub MapUserToDevice (
userRadius As Double,
userTheta As Double,
devXY As Integer()
)
public:
virtual void MapUserToDevice(
double userRadius,
double userTheta,
array<int>^ devXY
) override
abstract MapUserToDevice :
userRadius : float *
userTheta : float *
devXY : int[] -> unit
override MapUserToDevice :
userRadius : float *
userTheta : float *
devXY : int[] -> unit
Parameters
- userRadius
- Type: SystemDouble
A double which specifies the user radius coordinate.
- userTheta
- Type: SystemDouble
A double which specifies the user angle coordinate.
- devXY
- Type: SystemInt32
An int[2] in which the device coordinates are returned.
See Also