Browse our Products
Aspose.3D for Java 19.1 Release Notes
This page contains release notes for Aspose.3D for Java 19.1.
Improvements and Changes
Summary | Category |
---|---|
UV atlas algorithm | New Feature |
AMF Exporter | New Feature |
Archive-based file format detection | New Feature |
Public API and Backwards Incompatible Changes
See the list of any changes made to the public API such as added, renamed, removed or deprecated members as well as any non-backward compatible change made to Aspose.3D for Java. If you have concerns about any change listed, please raise it on the Aspose.3D support forum.
Added class com.aspose.threed.AMFSaveOptions:
/**
* Save options for AMF
*/
public class AMFSaveOptions extends SaveOptions
{
/**
* Whether to use compression to reduce the final file size, default value is true
*/
public boolean getEnableCompression();
/**
* Whether to use compression to reduce the final file size, default value is true
* @param value New value
*/
public void setEnableCompression(boolean value);
}
New member added to the class com.aspose.threed.PolygonModifier
:
/**
* Generate UV data from the given input mesh and specified normal data.
* @param mesh The input mesh
* @param normals The normal data
* @return Generated UV data
*/
public static VertexElementUV generateUV(Mesh mesh, VertexElementNormal normals);
/**
* Generate UV data from the given input mesh
* @param mesh The input mesh
* @return Generated UV data
*/
public static VertexElementUV generateUV(Mesh mesh);