Sort Score
Result 10 results
Languages All
Labels All
Results 291 - 300 of 17,176 for

scene

(0.09 sec)
  1. Extract Assets from ASE File Formats via .NET |...

    C# source code to load, render and add extract assets from ASE documents on .NET Framework, .NET Core, Mono....file via the constructor of Scene class Create zip file format...= "template.ase" ; Scene scene = new Scene(file); //The output...

    products.aspose.com/3d/net/extractor/ase/
  2. How to Run Aspose.3D for Java in Docker|Documen...

    Run Aspose.3D for Java in a Docker container for Linux. ...to create a plane in the 3d scene and set the vector and then...(); // Initialize Scene Scene scene = new Scene (); // Initialize...

    docs.aspose.com/3d/java/how-to-run-aspose-3d-in...
  3. Save 3D Meshes in Custom Binary Format|Document...

    Using Aspose.3D for .NET API, developers can open any supported 3D file, and then write meshes in the custom binary file....the RootNode member in the Scene class allows to visit each sub...only. // load a 3D file Scene scene = Scene . FromFile ( "test.fbx"...

    docs.aspose.com/3d/net/save-3d-meshes-in-custom...
  4. 向节点添加转换|Documentation

    Aspose.3D for Node.js 通过 Java API 具有支持在 3D 空间中旋转对象的功能。有三种定义对象在 3D 空间中旋转的方式,欧拉角、四元数和自定义矩阵,它们都由 Transform 类支持。...初始化场景对象 var scene = new aspose . threed . Scene (); // 初始化圆柱体...// 创建 ChildNode var Node = scene . getRootNode (). createChildNode...

    docs.aspose.com/3d/zh/nodejs-java/adding-transf...
  5. Merge GLB File Formats via Java | products.aspo...

    Sample Java merge GLB file. Use this example code to merge GLB file within any Web or Desktop Java based application....through the constructor of the Scene class Process usdz files and...generate usdz file Scene scene = new Scene(); int i = 0 ; for...

    products.aspose.com/3d/java/merger/glb/
  6. Merge 3DS File Formats via Java | products.aspo...

    Sample Java merge 3DS file. Use this example code to merge 3DS file within any Web or Desktop Java based application....through the constructor of the Scene class Process usdz files and...generate usdz file Scene scene = new Scene(); int i = 0 ; for...

    products.aspose.com/3d/java/merger/3ds/
  7. Merge PLY File Formats via Java | products.aspo...

    Sample Java merge PLY file. Use this example code to merge PLY file within any Web or Desktop Java based application....through the constructor of the Scene class Process usdz files and...generate usdz file Scene scene = new Scene(); int i = 0 ; for...

    products.aspose.com/3d/java/merger/ply/
  8. 合并 3D 文件中的网格|Documentation

    开发人员可以将多个网格合并为一个有效的网格。它们可能会将 3D 场景的所有网格、一个节点或一组节点转换为单个网格。为了实现这一点,在 Aspose.ThreeD.Entities.PolygonModifier类中有三个MergeMesh成员。...as a3d # load a 3D scene scene = a3d . Scene . from_file ( "LAD-TOP...PolygonModifier . merge_mesh ( scene ) # encode this mesh into the...

    docs.aspose.com/3d/zh/python-net/merge-meshes-i...
  9. Converting a 3ds file to STL format results in ...

    Hi, I’m upgrading Aspose 3D to lastest version and meet an issue when converting a 3DS file to STL file format. Background: With version Aspose.3D 19.10, my 3DS file can convert to STL format with a 1.63MB file output…...var scene = new Scene(); scene.Open(“benign.3ds”); scene.Save(“benign...only such polygons, scene.Open() creates a scene that has no mesh...

    forum.aspose.com/t/converting-a-3ds-file-to-stl...
  10. 产生紫外线|Documentation

    Aspose.3D for Python via .NET 提供了公开GenerateUV方法的PolygonModifier类,您可以使用该方法手动生成UV并将其与网格关联。下面的代码片段显示了生成和关联它的完整功能。...threed import FileFormat , Scene from aspose.threed.entities...com/aspose-3d/Aspose.3D-for-.NET scene = Scene () # since all primitive...

    docs.aspose.com/3d/zh/python-net/generate-uv/