com.flowpowered.math.vector.Vectorl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flow-math Show documentation
Show all versions of flow-math Show documentation
Immutable math library for Java with a focus on games and computer graphics.
The newest version!
package com.flowpowered.math.vector;
public interface Vectorl {
public Vectorl mul(long a);
public Vectorl div(long a);
public Vectorl pow(long pow);
public Vectorl abs();
public Vectorl negate();
public double length();
public long lengthSquared();
public int getMinAxis();
public int getMaxAxis();
public long[] toArray();
public Vectori toInt();
public Vectorl toLong();
public Vectorf toFloat();
public Vectord toDouble();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy