Sample Code
This section provides sample applications that demonstrate key features and workflows of the HOOPS Exchange API. Each example highlights specific use cases, such as file conversion, metadata extraction, and geometry processing, serving as practical starting points for integrating the API into your projects.
While we aim to provide examples in both C and C#, some samples are currently available in only one language. Future updates will expand language coverage to include all key functionalities.
In the meantime, you can adapt existing examples to your preferred language, as the C# API mirrors the functionality of the C API through its bindings. Refer to the C# API Primer for guidance.
| Name | Description | C/C++ | C# | Category |
|---|---|---|---|---|
| Anim Work Instructions | Create animated work instructions | Publishing | ||
| B-Rep Adaptor | Adapt B-rep models to your needs | Advanced Functions | ||
| Callbacks Report | Log CAD file events and errors | Hello World | ||
| Cascaded Attributes | Manage cascaded attributes easily | PRC Model | ||
| Collision Detection | Find collisions in CAD models | Advanced Functions | ||
| Count Part Instances | Count parts in a structure | Hello World | ||
| Create PRC B-Rep | Generate PRC with geometry | PRC Model | ||
| Create PRC Cubes | Create textured cubes in PRC | PRC Model | ||
| Demo Data Model | Create interactive PDF without writing JavaScript | Publishing | ||
| Demo Functionalities | Demonstrate PDF page and table creation | Publishing | ||
| Demo Functionalities Advanced | Demonstrate advanced PDF functionalities | Publishing | ||
| Demo Layers | Generate PDFs with layers | Publishing | ||
| Dump Feature Tree | Export features to XML | PRC Model | ||
| Export 3D to HTML | Export 3D models to HTML | Publishing | ||
| Export PDF to HTML | Export 3D PDFs to HTML | Publishing | ||
| Import Publish | Create a simple 3D PDF with Advanced Publishing | Hello World | ||
| Incremental Load | Load CAD files step by step | Reading Modes | ||
| Manufacturing MBE | Create a technical data package | Publishing | ||
| Mesh Viewer | Visualize mesh data | Viewers | ||
| Multiple PRC Files | Handle multiple PRC files from a CAD assembly | Reading Modes | ||
| Multiple Configurations | Handle multi-config CAD files | Reading Modes | ||
| PDF With BOM and Carousel | Create a scrolling table with 3D assemblies | Publishing | ||
| PRC to IFC XML | Convert PRC to IFC XML format | PRC Model | ||
| PRC to XML | Convert PRC to XML format | PRC Model | ||
| Print Assembly Structure | View assembly hierarchy | PRC Model | ||
| Publish PRC Cubes | Create textured cubes in PRC | Publishing | ||
| Sew B-Rep | Modify and sew B-reps | Advanced Functions | ||
| Shattered | Break assemblies into components | Reading Modes | ||
| Translate to PK Parts | Convert CAD to Parasolid | Bridges | ||
| U3D With Animation | Add animation to U3D with PDF | Publishing | ||
| Update Data | Update PDF data | Publishing | ||
| User Defined Views | Define and activate custom view | Publishing |
How to Build And Test Our Example Codes
Beforehand, make sure you have correctly prepared your environment for building and testing HOOPS Exchange. Follow the instruction in Set Up Your Environment for more information.
See Building Code Examples for more information about building and testing our sample codes.
B-Rep Adaptor
| C/C++ | samples/exchange/exchange/advanced_functions/BrepAdaptor |
|---|---|
| C# | csharp/samples/exchange/advanced_functions/BRepAdaptor |
B-Rep Adaptor shows how to make use of A3DAdaptAndReplaceAllBrepInModelFileAdvanced() to adapt B-rep models to your particular needs.
Callbacks Report
| C# | csharp/samples/exchange/hello_world/CallbacksReport |
|---|
This application initializes HOOPS Exchange, then load a CAD file. It writes the Exchange log to a file (or standard console output if not specified). It also implements the message, warning and error callbacks.
Cascaded Attributes
| C/C++ | samples/exchange/exchange/prc_model/CascadedAttributes |
|---|
This sample demonstrates how to programmatically set the mechanism of the cascaded attributes using HOOPS Exchange.
Collision Detection
| C/C++ | samples/exchange/exchange/advanced_functions/Collision |
|---|
This sample illustrates the collision detection feature in HOOPS Exchange. The sample reads an input CAD file and outputs collision status between representation items. The user may select which items are tested using their UUIDs; the output is available as a report file.
Count Part Instances
| C# | csharp/samples/exchange/prc_model/CountPartInstances |
|---|
This application initializes HOOPS Exchange, then walks the product structure to find all part instances. It writes the part instance count to a log file (or standard console output if not specified).
Create PRC B-Rep
| C/C++ | samples/exchange/exchange/prc_model/CreatePRCBrepWithGeometry |
|---|
This sample demonstrates how to programmatically create a PRC file using HOOPS Exchange. The only input is the file path. The program generates a PRC file which contains a warped circle with a thick edge.
Create PRC Cubes
| C/C++ | samples/exchange/exchange/prc_model/CreatePRCCubes |
|---|---|
| C# | csharp/samples/exchange/prc_model/CreatePRCCubes |
This sample demonstrates how to create a PRC file with the Exchange API. The only input is the output file path. The program generates a PRC file containing a tessellated textured cube that is instantiated multiple times. The generated output also contains PMIs and Views, as well as links between markups, Views, and entities.
Dump Feature Tree
| C/C++ | samples/exchange/exchange/prc_model/DumpFeatureTree |
|---|---|
| C# | csharp/samples/exchange/prc_model/DumpFeatureTree |
This sample demonstrates how to traverse a model and capture its features in an XML file.
Import Export
| C/C++ | samples/exchange/exchange/hello_world/ImportExport | Tutorial |
|---|---|---|
| C# | csharp/samples/exchange/hello_world/ImportExport | Tutorial |
This sample demonstrates how to programmatically import a CAD model using HOOPS Exchange and convert it to another format.
Note
Experimental USD export
Since HOOPS Exchange 2025.4.0, we support exporting to USD as an experimental feature. The Import Export sample can be extended to provide this functionnality. For more information, see Extending the Import Export Sample.
Incremental Load
| C/C++ | samples/exchange/exchange/reading_modes/IncrementalLoad |
|---|---|
| C# | csharp/samples/exchange/reading_modes/IncrementalLoad |
This sample demonstrates two ways of loading a CAD file: normal loading and incremental loading (first the assembly tree, then the parts contained in the file). Using the incremental loading technique allows a more fine-grained approach, which is especially beneficial when dealing with huge files (e.g., for loading only specific items at a time rather than the whole file in one shot). The only input is the file path.
Mesh Viewer
| C/C++ | GitHub | Write a CAD Viewer |
|---|---|---|
| C/C++ | samples/exchange/exchange/viewers/Viewer |
The Mesh Viewer example, added in HOOPS Exchange 2023 SP2 U1, demonstrates how to use the new usability API to access mesh data in representation models.
The Write a CAD Viewer tutorial provides more information about it.
Multiple PRC Files
| C/C++ | samples/exchange/exchange/reading_modes/MultiplePRCFiles |
|---|
This sample demonstrates how to programmatically create and read multiple PRC files from a CAD assembly using HOOPS Exchange. The input is the CAD assembly file path and a directory. The program generates multiple PRC files from this CAD assembly.
This mode is supported for the following formats: V4, V5, ProE, UG, SLDW. With other formats, only one PRC file is generated.
Multiple Configurations
| C/C++ | samples/exchange/exchange/reading_modes/LoadMultiConfigCADFile |
|---|
This sample demonstrates how to programmatically load CAD files that contain multiple configurations using HOOPS Exchange. The only input is the file path.
PRC to XML
| C/C++ | samples/exchange/exchange/prc_model/PRC2XML |
|---|
PRC to IFC XML
| C/C++ | samples/exchange/exchange/prc_model/PRC2IFCXML |
|---|
Converts a PRC file to an IFC XML representation.
Print Assembly Structure
| C/C++ | PrintAssemblyStructure.cpp |
Tutorial |
|---|---|---|
| C# | csharp/samples/exchange/prc_model/PrintProductStructure |
Publish PRC Cubes
| C/C++ using Advanced Publishing | samples/exchange/exchange/publishing/PublishPRCCubes |
|---|
The advanced publishing version of the sample is similar to the standard one, but also writes the result in PDF views.
Sew B-Rep
| C/C++ | samples/exchange/exchange/advanced_functions/SewBrep |
|---|
This sample demonstrates how to programmatically adapt B-rep models to particular needs using HOOPS Exchange.
The only input is the CAD file path.
- Load a CAD file
- Traverse the entire data structure
- Call A3DSewBrep for each B-rep model
- New modified data are populated
- PRC is exported from the modified data
Shattered
| C/C++ | samples/exchange/exchange/reading_modes/Shattered |
|---|
This sample demonstrates how to use the shattered mode in HOOPS Exchange. The input is the CAD assembly file path and a directory. The program generates multiple PRC files from this CAD assembly.
- Load a CAD assembly
- Extract all dependencies from the CAD assembly
- Convert CAD part files to PRC
- Convert CAD assembly files to PRC
- Reload the full model into memory from the previously created PRC files.
Translate to PK Parts
| C/C++ | samples/exchange/exchange/bridges/TranslateToPkParts |
|---|
This sample demonstrates how to use the Parasolid bridge in HOOPS Exchange to send the converted CAD data to Parasolid and then use the Parasolid APIs to perform advanced functions on the geometry, like healing, merge, simplify, sew, or accurate edges.
The input is the CAD file path and a directory plus the options. The program generates a Parasolid file from this CAD file. Please note that this sample won’t compile right away, specific things (detailed in the header of the source file) related to the Parasolid setup need to be done before running it.
Anim Work Instructions
| C/C++ | samples/exchange/exchange/publishing/AnimWorkinstruction |
|---|
This sample creates an example Work Instruction from a PDF template by populating text fields and adding JavaScript to buttons to set the camera position and model entity states (visibility and transform) based on viewpoint states stored in the source PRC file.
Demo Data Model
| C/C++ | samples/exchange/exchange/publishing/DemoDataModel |
|---|
Demonstrates how to create a rich interactive PDF without using JavaScript. By pushing data into specific structures and binding data to the layout, rich interactive PDF can be created. Text fields, lists, and scrolling tables can typically be updated automatically depending on what’s been selected by the user.
Demo Functionalities
| C/C++ | samples/exchange/exchange/publishing/DemoFunctionalities |
|---|
This sample application demonstrates how to create a document with different pages inserted from different sources. It also demonstrates the creation of tables on a PDF page.
Demo Functionalities Advanced
| C/C++ | samples/exchange/exchange/publishing/DemoFunctionalitiesAdv |
|---|
This sample application demonstrates miscellaneous functionalities for Advanced Publishing Advanced.
Demo Layers
| C/C++ | samples/exchange/exchange/publishing/DemoLayers |
|---|
This sample application demonstrates how to generate a PDF document with layers using Advanced Publishing.
Export 3D to HTML
| C/C++ | samples/exchange/exchange/publishing/Export3DToHtml |
|---|
This sample application demonstrates how to export a 3D model to HTML using Advanced Publishing. The sample shows how to generate a single monolithic HTML file and also how to generate an SCS stream cache file to be used with an HTTP server. Note that a sample HTTP server is provided to demonstrate how to implement an SCS workflow. See the section Viewing 3D in the Browser in our Programming Guide for more details.
Export PDF to HTML
| C/C++ | samples/exchange/exchange/publishing/ExportPDFToHtml |
|---|
This sample application demonstrates how to export an interactive 3D PDF to HTML using Advanced Publishing. The sample shows how to generate a root XML file with the associated resources (HTML, JavaScript …) to be used with an HTTP server. Note that a python script is given to generate files which can be consumed without HTTP server. See the section Viewing PDF in the Browser in our Programming Guide for more details.
Import Publish
| C/C++ | samples/exchange/exchange/hello_world/ImportPublish | Tutorial |
|---|
This sample creates a simple 3D PDF programmatically without using a template.
A detailed version of this sample is provided in import_publish.
Manufacturing MBE
| C/C++ | samples/exchange/exchange/manufacturing_mbe |
|---|
Shows how to create a Technical Data Package. It works with 3D annotated models and demonstrates how to insert 3D elements, how to add a view carousel that activates annotation views, and how to attach files (such as STEP files) to create a TDP.
It also demonstrates how to link 2D and 3D content and update what’s displayed in some text fields when certain PMI are selected.
PDF With BOM and Carousel
| C/C++ | samples/exchange/exchange/publishing/PDFWithBOMAndCarousel |
|---|
Demonstrates how to create a scrolling table with 3D assemblies. The scrolling table represents a Bill of Materials. When a line is selected, the 3D part it’s linked to is highlighted. Conversely when a 3D node is selected in the scene, the table line it’s linked to is highlighted
U3D With Animation
| C/C++ | samples/exchange/exchange/publishing/U3DWithAnimation |
|---|
Based on a supplied PDF template, this sample shows how to activate an animation in a U3D file with a button click in a PDF form.
Update Data
| C/C++ | samples/exchange/exchange/publishing/UpdateData |
|---|
This sample application demonstrates how to update a PDF file generated with Tetra 4D Enrich, using Advanced Publishing. See the section Using Tetra 4D Enrich templates in our Programming Guide for more details.
User Defined Views
| C/C++ | samples/exchange/exchange/publishing/UserDefinedViews |
|---|
This sample demonstrates how to create and activate a simple view that changes camera when clicking on a button.