Dicewars-Java-Approach/client/src/main/java/utils/vectors/WriteableVector4f.java
2023-08-11 16:49:59 +02:00

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);
}