Click or drag to resize

FunctionAtan2 Method

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-b0520
Syntax
C#
public static IExpression Atan2(
	IExpression expressionX,
	IExpression expressionY
)

Parameters

expressionX
Type: Couchbase.Lite.QueryIExpression
An expression or literal to evaluate to get the X coordinate to use
expressionY
Type: Couchbase.Lite.QueryIExpression
An expression or literal to evaluate to get the Y coordinate to use

Return Value

Type: IExpression
A function that will get the arctangent of the point in question
See Also