com.parzivail.p3d.P3dFace Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pswg Show documentation
Show all versions of pswg Show documentation
Explore the galaxy with Galaxies: Parzi's Star Wars Mod!
package com.parzivail.p3d;
import org.joml.Vector3f;
public class P3dFace
{
public final Vector3f[] positions;
public final Vector3f normal;
public final Vector3f[] texture;
public P3dFace(Vector3f[] positions, Vector3f normal, Vector3f[] texture)
{
this.positions = positions;
this.normal = normal;
this.texture = texture;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy