Table of Contents

Method GetVector3

Namespace
Anvil.API
Assembly
NWN.Anvil.dll

GetVector3(string, string, string)

Gets the specified Vector3 value.

public Vector3? GetVector3(string columnNameX, string columnNameY, string columnNameZ)

Parameters

columnNameX string

The name/label of the column containing the x component of the vector.

columnNameY string

The name/label of the column containing the y component of the vector.

columnNameZ string

The name/label of the column containing the z component of the vector.

Returns

Vector3?

The associated value. null if no value is set.

GetVector3(int, int, int)

Gets the specified Vector3 value.

public Vector3? GetVector3(int columnIndexX, int columnIndexY, int columnIndexZ)

Parameters

columnIndexX int

The index of the column containing the x component of the vector.

columnIndexY int

The index of the column containing the y component of the vector.

columnIndexZ int

The index of the column containing the z component of the vector.

Returns

Vector3?

The associated value. null if no value is set.