All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flowpowered.math.vector.Vectorf Maven / Gradle / Ivy

Go to download

Immutable math library for Java with a focus on games and computer graphics.

The newest version!
package com.flowpowered.math.vector;

public interface Vectorf {
    public Vectorf mul(float a);

    public Vectorf div(float a);

    public Vectorf pow(float pow);

    public Vectorf ceil();

    public Vectorf floor();

    public Vectorf round();

    public Vectorf abs();

    public Vectorf negate();

    public float length();

    public float lengthSquared();

    public Vectorf normalize();

    public int getMinAxis();

    public int getMaxAxis();

    public float[] toArray();

    public Vectori toInt();

    public Vectorl toLong();

    public Vectorf toFloat();

    public Vectord toDouble();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy