21 lines
331 B
Java
21 lines
331 B
Java
package utils.vectors;
|
|
|
|
public interface WriteableVector4f extends WriteableVector3f {
|
|
|
|
/**
|
|
* Set the W value
|
|
* @param w
|
|
*/
|
|
void setW(float w);
|
|
|
|
/**
|
|
* Set the X,Y,Z,W values
|
|
* @param x
|
|
* @param y
|
|
* @param z
|
|
* @param w
|
|
*/
|
|
void set(float x, float y, float z, float w);
|
|
|
|
}
|