Struct gdnative::Vector3Array [] [src]

pub struct Vector3Array(_);

A reference-counted vector of Vector3 that uses Godot's pool allocator.

Methods

impl Vector3Array
[src]

[src]

Creates an empty array.

[src]

Creates an array by trying to convert each variant.

See Variant::to_vector3.

[src]

Appends a vector to the end of the array.

[src]

Appends each vector to the end of the array.

[src]

Inserts a vector at the given offset.

[src]

Inverts the order of the elements in the array.

[src]

Removes an element at the given offset.

[src]

Changes the size of the array, possibly removing elements or pushing default values.

[src]

Returns a copy of the element at the given offset.

[src]

Sets the value of the element at the given offset.

[src]

Returns the number of elements in the array.

[src]

Trait Implementations

impl<'l> From<&'l Vector3Array> for Variant
[src]

[src]

Performs the conversion.

impl Drop for Vector3Array
[src]

[src]

Executes the destructor for this type. Read more

impl Default for Vector3Array
[src]

[src]

Returns the "default value" for a type. Read more

impl GodotType for Vector3Array
[src]

[src]

[src]

[src]

Auto Trait Implementations

impl Send for Vector3Array

impl Sync for Vector3Array