hu.kazocsaba.v3d.mesh.format.ply.Element Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mesh-ply Show documentation
Show all versions of mesh-ply Show documentation
Data classes for 3D meshes.
The newest version!
package hu.kazocsaba.v3d.mesh.format.ply;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author Kazó Csaba
*/
class Element {
public String name;
public int count;
public List properties=new ArrayList<>();
public Element(String name, int count) {
this.name = name;
this.count = count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy