Vector3Array

Category: Built-In Types

Brief Description

An Array of Vector3.

Member Functions

Vector3Array Vector3Array ( Array from )
void push_back ( Vector3 vector3 )
void resize ( int idx )
void set ( int idx, Vector3 vector3 )
int size ( )

Description

An Array specifically designed to hold Vector3.

Member Function Description

Construct a new Vector3Array. Optionally, you can pass in an Array that will be converted.

  • void push_back ( Vector3 vector3 )

Insert a Vector3 at the end.

  • void resize ( int idx )

Set the size of the Vector3Array. If larger than the current size it will reserve some space beforehand, and if it is smaller it will cut off the array.

Change the Vector3 at the given index.

Return the size of the array.