top.hendrixshen.magiclib.api.compat.mojang.math.Vector3fCompat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magiclib-minecraft-api-1.19.3-fabric Show documentation
Show all versions of magiclib-minecraft-api-1.19.3-fabric Show documentation
Unleash magic into Minecraft, infuse souls, ascend to heaven!
package top.hendrixshen.magiclib.api.compat.mojang.math;
import org.joml.Vector3f;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import org.jetbrains.annotations.NotNull;
import top.hendrixshen.magiclib.impl.compat.mojang.math.Vector3fCompatImpl;
import top.hendrixshen.magiclib.util.collect.Provider;
@Environment(EnvType.CLIENT)
public interface Vector3fCompat extends Provider {
static @NotNull Vector3fCompat of(@NotNull Vector3f vector3f) {
return new Vector3fCompatImpl(vector3f);
}
QuaternionCompat rotationDegrees(float degrees);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy