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

hu.kazocsaba.v3d.mesh.format.ply.Element Maven / Gradle / Ivy

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