Creates a function that will get the arctangent of the point expressed by
expressions calculating X and Y of the point for the formula
Namespace:
Couchbase.Lite.Query
Assembly:
Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.0.0-b0295
Syntax public static IFunction Atan2(
Object expressionX,
Object expressionY
)
Parameters
- expressionX
- Type: SystemObject
An expression or literal to evaluate to get the X coordinate to use - expressionY
- Type: SystemObject
An expression or literal to evaluate to get the Y coordinate to use
Return Value
Type:
IFunctionA function that will get the arctangent of the point in question
See Also