Click or drag to resize

Vector2HItem Property

Gets or sets the component at the specified index.

Namespace:  NeoAxis
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2023.1.2.0 (2023.1.2.0)
Syntax
C#
public HalfType this[
	int index
] { get; set; }

Parameters

index
Type: SystemInt32
The index of the component to access. Use 0 for the X component, 1 for the Y component, and 2 for the Z component.

Property Value

Type: HalfType
The value of the X, Y, or Z component, depending on the index.

Return Value

Type: HalfType
The value of the component at the specified index.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThrown when the index is out of the range [0, 2].
See Also