io.github.kosmx.bendylib.impl.IPosWithOrigin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bendy-lib Show documentation
Show all versions of bendy-lib Show documentation
Minecraft FabricMC model render library
The newest version!
package io.github.kosmx.bendylib.impl;
import net.minecraft.class_1160;
/**
* Position vector what is storing its original position
*/
public interface IPosWithOrigin {
/**
* Return a COPY of its original position
* @return this.vector.copy()
*/
class_1160 getOriginalPos();
/**
* @return current position
*/
class_1160 getPos();
/**
* set a new value to current pos
* @param vector3f new position
*/
void setPos(class_1160 vector3f);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy