Sort Score
Result 10 results
Languages All
Labels All
Results 151 - 160 of 17,179 for

scene

(0.74 sec)
  1. Merge AMF File Formats via Java | products.aspo...

    Sample Java merge AMF file. Use this example code to merge AMF 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/amf/
  2. Merge X File Formats via Java | products.aspose...

    Sample Java merge X file. Use this example code to merge X 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/x/
  3. Merge GLTF File Formats via Java | products.asp...

    Sample Java merge GLTF file. Use this example code to merge GLTF 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/gltf/
  4. Merge USDZ File Formats via Java | products.asp...

    Sample Java merge USDZ file. Use this example code to merge USDZ 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/usdz/
  5. Add Animation Property and Setup Target Camera ...

    In Aspose.3D, object animation is actually key-frame animation that animates on properties. To animate properties, you need a CurveMapping instance which maps components of a property to different curves, for example, a Vector3 property can have 3 components X/Y/Z, which will set up three channels in CurveMapping, every channel can have a set of Curves....supports rendering animated scene. This article explains prerequisites...// Initialize scene object Scene scene = new Scene (); // Call...

    docs.aspose.com/3d/net/add-animation-property-a...
  6. 使用 VRML 格式|Documentation

    Aspose.3D for Java 允许使用 VRML 版本1.0。VRML 文件格式已添加到FileFormat类中。Aspose.3D 可以自动检测 VRML 格式,因此在Open方法中通常忽略FileFormat。...// initialize a scene Scene scene = new Scene (); // open Virtual...Language (VRML) file format scene . open ( MyDir + "test.wrl"...

    docs.aspose.com/3d/zh/java/working-with-vrml-fo...
  7. 操作 3D 场景的自定义属性|Documentation

    开发人员可以添加、检索和删除 3D 对象的自定义属性。3D 对象的RemoveProperty、GetProperty、SetProperty成员是一组用于操作对象的自定义属性的常用方法。...initialize a scene from aspose.threed import Scene from aspose...FileFormat scene = Scene () # create a Box instance box = scene . root_node...

    docs.aspose.com/3d/zh/python-net/manipulate-cus...
  8. 从相机以图像格式渲染 3D 视图|Documentation

    使用 Aspose.3D for .NET,开发人员可以渲染图像以查看 3D 模型的逼真图像,具有或不具有增强的背景、纹理、阴影,还可以调整图像大小。... 从相机拍摄 3D 模型的照片 Scene 类公开的 Render 方法可用于从活动相机拍摄照片。...NET // Load scene from file Scene scene = Scene . FromFile (...

    docs.aspose.com/3d/zh/net/render-3d-view-in-ima...
  9. Specify 3D File Load Options in C#|Documentation

    There are several Scene.Open method overloads or Scene class constructor overloads that accept a LoadOptions object. Each load format has a corresponding class that holds load options for that load format....option classes in C# inside the Scene object and then you can save...are several Scene.Open method overloads or Scene class constructor...

    docs.aspose.com/3d/net/specify-3d-file-load-opt...
  10. 产生紫外线|Documentation

    Aspose.3D for .NET 提供了用于公开GenerateUV方法的PolygonModifier类,您可以使用该类手动生成UV并将其与网格关联。下面的代码片段显示了生成和关联它的完整功能。...NET Scene scene = new Scene (); //since all primitive...); //put it to the scene var node = scene . RootNode . CreateChildNode...

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