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

com.github.dabasan.jxm.bd1.BD1Face Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package com.github.dabasan.jxm.bd1;

import org.joml.Vector3f;

/**
 * BD1 face
 *
 * @author maeda6uiui
 */
class BD1Face {
    public Vector3f[] vertexPositions;
    public Vector3f normal;
    public UV[] uvs;

    public BD1Face() {
        vertexPositions = new Vector3f[4];
        normal = new Vector3f();
        uvs = new UV[4];

        for (int i = 0; i < 4; i++) {
            vertexPositions[i] = new Vector3f();
            uvs[i] = new UV();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy