How to import CATIA models with hidden elements

How to import CATIA models with hidden elements

CAD Exchanger SDK does not import hidden elements from CATIA by default. To import them, enable the ImportHiddenObjects parameter for CAT_Reader:
  1. CAT_Reader aReader;
  2. CAT_ReaderParameters aParams;
  3. aParams.ImportHiddenObjects() = true;
  4. aReader.Parameters() = aParams;
See also: CATIA Converter.

    • Related Articles

    • How to import PMI into Unity

      CAD Exchanger Unity plugin can import PMI into Unity. See our ready-made Unity PMI Viewer Example. ModelData_ModelReader has the ReadPMI parameter. It has to be set to True using SetReadPMI method. This will make CAD Exchanger import PMI from the ...
    • Where can I find models to test CAD Exchanger?

      In order to test CAD Exchanger products representative models can be used: from CAD Exchanger Lab installation folder (${install_dir}/models), or from CAD Exchanger SDK folder (${install_dir}/examples/models); from GrabCAD. The site offers a large ...
    • How to import and visualize 2D drawings in Web Toolkit

      We have a ready-made Drawing Viewer Example that shows drawings: sheets, layers, elements in a browser. Its source code is available here on GitHub. It can be implemented into your solution. In order for the Web Toolkit to display the drawing, the ...
    • How to simplify models in CAD Exchanger SDK

      1. If your model contains B-Rep data, you can generate a mesh representation using ModelAlgo_BRepMesher. Setting different ModelAlgo_BRepMesherParameters will result in different output quality. See our ready-made Visualization Mesher Example and ...
    • Is it possible to import semantic (textual) PMI into Unity?

      Since there are no entities in Unity that can contain it, semantic PMI can not be transferred to Unity with our plugin. We can suggest working with ModelData_Model class to get semantic PMI data using our SDK - please see our PMI Example. Note that ...