Table of Contents

Constructor Atan2

Namespace
YndigoBlue.Velocity.Functions
Assembly
YndigoBlue.Velocity.dll

Atan2(Column, double)

Initializes a new instance of ATAN2 with a column y-coordinate and literal x-coordinate.

public Atan2(Column yColumn, double xValue)

Parameters

yColumn Column

The column containing the y-coordinate values.

xValue double

The x-coordinate value.

Atan2(Column, Column)

Initializes a new instance of ATAN2 with column-based y and x coordinates.

public Atan2(Column yColumn, Column xColumn)

Parameters

yColumn Column

The column containing the y-coordinate values.

xColumn Column

The column containing the x-coordinate values.

Atan2(Expression, double)

Initializes a new instance of ATAN2 with an expression y-coordinate and literal x-coordinate.

public Atan2(Expression yExpression, double xValue)

Parameters

yExpression Expression

The expression containing the y-coordinate value.

xValue double

The x-coordinate value.

Atan2(IElement, IElement)

Initializes a new instance of ATAN2 with generic element-based y and x coordinates.

public Atan2(IElement yElement, IElement xElement)

Parameters

yElement IElement

The element containing the y-coordinate value.

xElement IElement

The element containing the x-coordinate value.