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

com.parzivail.p3d.P3dFace Maven / Gradle / Ivy

There is a newer version: 0.0.114+1.20.2
Show newest version
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