FBX Exporter SDK for Autodesk Navisworks

About the SDK

This is C# based SDK to Export Navisworks files to FBX format. You just need to call export function from your c# code.

 

C# Code Snippet:
Navisworks_FBX_SDK.NavisworksFBXSDKSettings settings = new Navisworks_FBX_SDK.NavisworksFBXSDKSettings();

Navisworks_FBX_SDK.ConvertToFBXSDK convertToFBXSDK = new Navisworks_FBX_SDK.ConvertToFBXSDK();

convertToFBXSDK.ConvertToFBXCommand("D:\\Test\\Navisworks\\out.fbx", settings);

 

YOU CAN INTEGRATE/USE/CALL API SERVICES FROM YOUR PRODUCT/SOFTWARE. If you have any requirement, please contact us to get the SDK Trial.

1. Generate FBX file format (.FBX)
2. Fast fbx conversion process
3. Share design without needing any special software to view it
4. Small file size
5. Control quality and size while converting to FBX file
6. Choice of writing Normal in FBX
7. Colors and material (texture not supported in current version)
8. Control to choose scale unit (MM, CM, Feet, Meter etc.) of FBX file
9. APIs to call from other program/application

SDK Setting Options

Version 1.0, 07/10/2020
1. Navisworks to FBX Exporter SDK

End user license agreement

Terms and Condition

1. License key will be sent immediately after payment
2. Add this license key in Help dialog and activate the plugin.

More Details

Contact at support@visionworkplace.com to get the SDK Trial.

1. Add referance of the navisworks fbx dll 'Navisworks_FBX_.dll' to visual studio project according        to the navisworks version, other dlls are common.
   Example - for navisworks verson 2018 add 'Navisworks_FBX_2018.dll' dll referance to visual studio.
2. Use .net framework 4.7
3. Use following code to convert
            //Settings
            Navisworks_FBX_SDK.NavisworksFBXSDKSettings settings = new Navisworks_FBX_SDK.NavisworksFBXSDKSettings();
        settings.OutFileType = NavisworksFBXSDKSettings.FBXOutFileType.ascii;
            settings.ShowMessageBox = false;
            settings.Y_Z_Flip = false; 

            //Conversion
        Navisworks_FBX_SDK.ConvertToFBXSDK convertToFBXSDK = new             Navisworks_FBX_SDK.ConvertToFBXSDK();

            // This function takes two parameters
            // 1) Output file path
            // 2) NavisworksFBXSDKSettings object
 
            convertToFBXSDK.ConvertToFBXCommand("Output file path", settings);
            //Example
            convertToFBXSDK.ConvertToFBXCommand("D:\\Test\\Navisworks\\out.fbx", settings);

Note: If you have our plugin "FBX Converter for Autodesk Navisworks" installed, then remove it before using the SDK