Package | Description |
---|---|
spim.vecmath |
Modifier and Type | Method and Description |
---|---|
float |
Vector4f.angle(Vector4f v1)
Returns the (4-space) angle in radians between this vector and the vector
parameter; the return value is constrained to the range [0,PI].
|
float |
Vector4f.dot(Vector4f v1)
returns the dot product of this vector and v1
|
void |
Matrix4f.getColumn(int column,
Vector4f v)
Copies the matrix values in the specified column into the vector
parameter.
|
void |
Matrix4f.getRow(int row,
Vector4f v)
Copies the matrix values in the specified row into the vector parameter.
|
void |
Vector4f.normalize(Vector4f v1)
Sets the value of this vector to the normalization of vector v1.
|
void |
Matrix4f.setColumn(int column,
Vector4f v)
Sets the specified column of this matrix4f to the vector provided.
|
void |
Matrix4f.setRow(int row,
Vector4f v)
Sets the specified row of this matrix4f to the Vector provided.
|
void |
Transform3D.transform(Vector4f vec)
Transform the vector vec using this Transform and place the result back
into vec.
|
void |
Transform3D.transform(Vector4f vec,
Vector4f vecOut)
Transform the vector vec using this Transform and place the result into
vecOut.
|
Constructor and Description |
---|
Vector4d(Vector4f v1)
Constructs and initializes a Vector4d from the specified Vector4f.
|
Vector4f(Vector4f v1)
Constructs and initializes a Vector4f from the specified Vector4f.
|
Copyright © 2015–2021 Fiji. All rights reserved.