Vector3List class
A list of Vector3.
- Inheritance
-
- Object
- VectorList<
Vector3> - Vector3List
Constructors
- Vector3List(int length, [int offset = 0, int stride = 0])
-
Create a new vector list with
length
elements. Optionally it is possible to specify anoffset
in the buffer and astride
between each vector. -
Vector3List.fromList(List<
Vector3> list, [int offset = 0, int stride = 0]) -
Create a new vector list from a list of vectors. Optionally it is possible
to specify an
offset
in the buffer and astride
between each vector. - Vector3List.view(Float32List buffer, [int offset = 0, int stride = 0])
-
Create a new vector list as a view of
buffer
. Optionally it is possible to specify aoffset
in thebuffer
and astride
between each vector.
Properties
- buffer → Float32List
-
The internal storage buffer of this list.
no setterinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- length → int
-
The count of vectors in this list.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
add(
int index, Vector3 vector) → void -
Add
vector
to the vector atindex
. -
addScaled(
int index, Vector3 vector, double factor) → void -
Add
vector
scaled byfactor
to the vector atindex
. -
copy(
VectorList< Vector3> src, {int srcOffset = 0, int offset = 0, int count = 0}) → void -
Copy a range of
count
vectors beginning atsrcOffset
fromsrc
into this list starting atoffset
.inherited -
load(
int index, Vector3 vector) → void -
Retrieves the vector at
index
and stores it invector
.override -
multiply(
int index, Vector3 vector) → void -
Multiply the vector at
index
byvector
. -
newVector(
) → Vector3 -
Create a new instance of
T
.override -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
scale(
int index, double factor) → void -
Scale the vector at
index
byfactor
. -
setValues(
int index, double x, double y, double z) → void -
Set the vector at
index
tox
,y
, andz
. -
setZero(
int index) → void -
Set the vector at
index
to zero. -
store(
int index, Vector3 vector) → void -
Store
vector
in the list atindex
.override -
sub(
int index, Vector3 vector) → void -
Substract
vector
from the vector atindex
. -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
-
operator [](
int index) → Vector3 -
Retrieves the vector at
index
.inherited -
operator []=(
int index, Vector3 v) → void -
Store
v
in the list atindex
.inherited