Convert FBX RVM

FBX files are commonly used to exchange information between different 3D file manipulation applications. In certain situations, you might need to convert FBX to RVM or RVM to FBX files. RVM files are useful because they include information about Texture, Geometry, Geometry, and labels of objects. Please refer to the following sections to explore the conversion scenarios.

FBX to RVM or RVM to FBX Converter – Java API Installation

Aspose.3D for Java API supports converting FBX and RVM files as well as several other file formats. You can configure the API by downloading the JAR file from the New Releases section, or with the following Maven configurations:

Repository:

 <repositories>
    <repository>
        <id>AsposeJavaAPI</id>
        <name>Aspose Java API</name>
        <url>http://repository.aspose.com/repo/</url>
    </repository>
</repositories>

Dependency:

 <dependencies>
    <dependency>
        <groupId>com.aspose</groupId>
        <artifactId>aspose-3d</artifactId>
        <version>21.11</version>
    </dependency>
</dependencies>

Convert FBX to RVM Programmatically using Java

You can convert FBX to RVM files with the steps below:

  1. Load the input FBX file with Scene class.
  2. Instantiate an object of RvmSaveOptions class.
  3. Save output RVM file.

The code sample below explains how to convert an FBX file to an RVM file programmatically using Java:

Convert RVM to FBX Programmatically with Java

You need to follow the below steps to convert a RVM file to a FBX file:

  1. Load input RVM file using Scene class.
  2. Declare a FbxSaveOptions class object.
  3. Save output FBX file.

The following code snippet shows how to convert a RVM file to a FBX file programmatically in Java:

Conclusion

In this article, you have explored how to convert FBX files to RVM or RVM to FBX files in Java. You can check different other features of the API by visiting the documentation. Moreover, please feel free to contact us at the free support forum for any of your concerns.

See Also