Browse our Products

Aspose.3D for .NET 20.5 Notes de Libération

Améliorations et changements

 CléRésuméCatégorie
THREEDNET-664  JT fichiers utilisés La compression LZMA ne sont pas pris en charge.Amélioration  
THREEDNET-502   Améliorez la requête OAP, ajoutez la prise en charge du matériel/AssetInfo/TransformAmélioration  
THREEDNET-668  Exception sur le chargement du fichier DXF Bug
THREEDNET-669   L’exportation du maillage réparé à OBJ échouera Bug
THREEDNET-670   Noeud. GetBoundingBox() mauvaise valeur. Bug
THREEDJAVA-73  Exception sur la conversion du fichier 3D en PNG Bug

Public API et changements incompatibles vers l’arrière

  • Changé la signature de SelectSingleObject/SelectObjects à partir deAspose.ThreeD. nœud
 //public Aspose.ThreeD.A3DObject SelectSingleObject(string path)

public object SelectSingleObject(string path)

//public System.Collections.Generic.List<Aspose.ThreeD.A3DObject> SelectObjects(string path)

public System.Collections.Generic.List<object> SelectObjects(string path)

Code d’échantillon

 var scene = new Scene(new Torus());

foreach (BoundingBox bbox in scene.RootNode.SelectObjects("//<BoundingBox>"))

{

     Console.WriteLine($"Found a bbox : {bbox}");

}

Ceci est introduit par THREEDNET-502 qui peut interroger des objets plus profonds tels que Material/Texture/AssetInfo/Transform/VertexElements.

  • Correction d’une faute de frappe dansAspose.ThreeD. Profils. HShape
 //Old property:

//public double OveralDepth{ get;set;}



//New property

public double OverallDepth{ get;set;} 


 
 Français