This document is archived and information here might be outdated. Recommended version. |
The surface Z=f(x,y).
[Visual Basic .NET] Public Function get_Z ( _ ByVal X As Double, _ ByVal Y As Double _ ) As Double
[C#] public double get_Z ( double X, double Y );
[C++]
HRESULT get_Z(
double X,
double Y,
System.Double* Z
);
[C++]
Parameters X
X is a parameter of type double Y
Y is a parameter of type double Z [out, retval]
Z is a parameter of type double*
Returns the Z value for the (x, y) coordinate on the FunctionalSurface. If the (x, y) coordinate is outside of the Domain for which the FunctionalSurface is defined, a NaN is returned.