hu.kazocsaba.v3d.mesh.format.ply.ScalarProperty 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;
/**
*
* @author Kazó Csaba
*/
class ScalarProperty extends Property {
public Type type;
public ScalarProperty(String name, Type type) {
super(name);
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy