Namespace: GameEngine.Layers.PointCloud
Class: GameEngine/Layers/PointCloud/ArcGISPointCloudFilterCollection
Since: 2.4.0

Summary

A collection of ArcGISPointCloudFilter values.

Constructors

ArcGISPointCloudFilterCollection()

Creates a vector. This allocates memory that must be deleted.

Since 2.4.0

Properties

PropertyTypeNullableReadonlySummary
SizeulongNoYes

The number of values in the vector.

Size

ulong Size

The number of values in the vector.

If an error occurs, 0 will be returned.

Methods

SignatureReturn TypeSummary

Add(ArcGISPointCloudFilter)

ulong

Add a value to the vector.

AddArray(ArcGISCollection<ArcGISPointCloudFilter>)

ulong

Appends a vector to a vector.

At(ulong)

ArcGISPointCloudFilter

Get a value at a specific position.

Contains(ArcGISPointCloudFilter)

bool

Indicates if the vector contains the given value.

First()

ArcGISPointCloudFilter

Get the first value in the vector.

IndexOf(ArcGISPointCloudFilter)

ulong

Finds the position of the given value in the vector.

Insert(ulong, ArcGISPointCloudFilter)

void

Insert the provided value at a specific position in the vector.

IsEmpty()

bool

Determines if the vector is empty.

Last()

ArcGISPointCloudFilter

Get the last value in the vector.

Move(ulong, ulong)

void

Move a value from the current position to a new position in the vector.

Npos()

ulong

Returns a value indicating a bad position within the vector.

Remove(ulong)

void

Remove a value at a specific position in the vector.

RemoveAll()

void

Remove all values from the vector.

Add

Add a value to the vector.

Since 2.4.0

Arguments
NameTypeSummary
valueArcGISPointCloudFilter

The value to add.

Returns ulong

The position of the value. Max value of size_t if an error occurs.

AddArray

ulong AddArray(ArcGISCollection<ArcGISPointCloudFilter> vector2)

Appends a vector to a vector.

Since 2.4.0

Arguments
NameTypeSummary
vector2ArcGISCollection<ArcGISPointCloudFilter>

The value to add.

Returns ulong

The new size of vector_1. Max value of size_t if an error occurs.

At

Get a value at a specific position.

Since 2.4.0

Arguments
NameTypeSummary
positionulong

The position for which you want the value.

Returns ArcGISPointCloudFilter

A ArcGISPointCloudFilter that represents the value at the specified position.

Contains

Indicates if the vector contains the given value.

Since 2.4.0

Arguments
NameTypeSummary
valueArcGISPointCloudFilter

The value you want to find.

Returns bool

True if the value is in the vector, otherwise false.

First

Get the first value in the vector.

Since 2.4.0

Returns ArcGISPointCloudFilter

A ArcGISPointCloudFilter representing the value at the specified position.

IndexOf

Finds the position of the given value in the vector.

Since 2.4.0

Arguments
NameTypeSummary
valueArcGISPointCloudFilter

The value you want to find.

Returns ulong

The position of the value in the vector, Max value of size_t otherwise.

Insert

void Insert(ulong position, ArcGISPointCloudFilter value)

Insert the provided value at a specific position in the vector.

Since 2.4.0

Arguments
NameTypeSummary
positionulong

The position at which to insert the given value.

valueArcGISPointCloudFilter

The value to add.

Returns void

IsEmpty

bool IsEmpty()

Determines if the vector is empty.

Since 2.4.0

Returns bool

True if the vector object contains no values, otherwise false. Returns true if an error occurs.

Last

Get the last value in the vector.

Since 2.4.0

Returns ArcGISPointCloudFilter

A ArcGISPointCloudFilter representing the value at the specified position.

Move

void Move(ulong oldPosition, ulong newPosition)

Move a value from the current position to a new position in the vector.

Since 2.4.0

Arguments
NameTypeSummary
oldPositionulong

The current position of the value.

newPositionulong

The position to which you want to move the value.

Returns void

Npos

static ulong Npos()

Returns a value indicating a bad position within the vector.

Since 2.4.0

Returns ulong

A size_t.

Remove

void Remove(ulong position)

Remove a value at a specific position in the vector.

Since 2.4.0

Arguments
NameTypeSummary
positionulong

The position where you want to remove the value.

Returns void

RemoveAll

void RemoveAll()

Remove all values from the vector.

Since 2.4.0

Returns void

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.