top.hendrixshen.magiclib.impl.render.matrix.JomlMatrixStack Maven / Gradle / Ivy
/*
* This file is part of the TweakerMore project, licensed under the
* GNU Lesser General Public License v3.0
*
* Copyright (C) 2024 Fallen_Breath and contributors
*
* TweakerMore is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* TweakerMore is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with TweakerMore. If not, see .
*/
package top.hendrixshen.magiclib.impl.render.matrix;
import com.mojang.blaze3d.vertex.PoseStack;
import lombok.AllArgsConstructor;
import org.joml.Matrix4f;
import org.joml.Matrix4fStack;
import top.hendrixshen.magiclib.api.render.matrix.MatrixStack;
/**
* Reference to TweakerMore
*/
@AllArgsConstructor
public class JomlMatrixStack implements MatrixStack {
private final Matrix4fStack matrixStack;
@Override
public PoseStack getPoseStack() {
throw new RuntimeException("JomlMatrixStack does not support getPoseStack()");
}
@Override
public void pushMatrix() {
this.matrixStack.pushMatrix();
}
@Override
public void popMatrix() {
this.matrixStack.popMatrix();
}
@Override
public void translate(double x, double y, double z) {
this.matrixStack.translate((float)x, (float)y, (float)z);
}
@Override
public void scale(double x, double y, double z) {
this.matrixStack.scale((float)x, (float)y, (float)z);
}
@Override
public void mulMatrix(Matrix4f matrix4f) {
this.matrixStack.mul(matrix4f);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy