Blader door onze producten
Aspose.3D for .NET 19.1 Mitteilung hinweise
Diese Seite enthält Versions hinweise fürAspose.3D for .NET 19.1
Verbesserungen und Änderungen
Schlüssel | Zusammenfassung | Kategorie |
---|---|---|
THREEDNET-346 | UV-Atlas-Algorithmus | Neues Feature |
THREEDNET-467 | AMF Exporteur | Neues Feature |
THREEDNET-469 | Archiv basierte Dateiformat erkennung | Neues Feature |
Öffentliche API und rückwärts inkompatible Änderungen
Siehe die Liste aller an der Öffentlichkeit vorgenommenen Änderungen API, z. B. hinzugefügte, umbenannte, entfernte oder veraltete Mitglieder sowie nicht abwärts kompatible Änderungen an Aspose.3D for .NET. Wenn Sie Bedenken hinsichtlich einer aufgeführten Änderung haben, geben Sie diese bitte auf derAspose.3D Unterstützung forum.
Klasse Aspose.ThreeD hinzugefügt. Formate. AMF SaveOptions
/// <summary>
/// Save options for AMF
/// </summary>
public class AMFSaveOptions : SaveOptions
{
/// <summary>
/// Whether to use compression to reduce the final file size, default value is true
/// </summary>
public bool EnableCompression { get; set; }
}
Neues Mitglied der Klasse Aspose.ThreeD hinzugefügt. Entitäten. Polygon Modifikator:
/// <summary>
/// Generate UV data from the given input mesh and specified normal data.
/// </summary>
/// <param name="mesh">The input mesh</param>
/// <param name="normals">The normal data</param>
/// <returns>Generated UV data</returns>
public static VertexElementUV GenerateUV(Mesh mesh, VertexElementNormal normals);
/// <summary>
/// Generate UV data from the given input mesh
/// </summary>
/// <param name="mesh">The input mesh</param>
/// <returns>Generated UV data</returns>
public static VertexElementUV GenerateUV(Mesh mesh);