VDA-FS Reader

VDA-FS
File Extension VDA
Supported Versions 1.0 and 2.0
Platforms
Tessellation Supported
B-rep Supported
PMI N/A

The VDA-FS file format was created by the German Automotive Industry Association (VDA) in the 1980s. It was developed to facilitate the transfer of surface models between different CAD systems in the automotive industry. The format was standardized under DIN 66301 and has since been largely replaced by more modern formats like STEP.

The HOOPS Exchange VDA-FS Reader provides full access to the assembly, B-rep, and view data stored within a VDA-FS file. Most files commonly have a .VDA extension.

HOOPS Exchange geometry access for VDA-FS includes:

  • B-rep: Access to exact geometry where present in the source file.
  • Tessellation: Can be generated by HOOPS Exchange for visualization.

How to Import From VDA-FS

If you are new to reading models with HOOPS Exchange, see the basic load workflow </guide/basic_operations/load_model>` section of the Programming Guide.

To load a VDA-FS file, use A3DAsmModelFileLoadFromFile().

Below, the A3DParamsLoadData structure is used to customize the loading behavior. See our API reference manual for more information about this important data type.

A3DAsmModelFile* pModelFile = 0;

A3DRWParamsLoadData sReadParam;
A3D_INITIALIZE_DATA(A3DRWParamsLoadData, sReadParam);
sReadParam.m_sGeneral.m_bReadSolids = true;

// ... set other A3DRWParamsLoadData fields as necessary

A3DAsmModelFileLoadFromFile("path/to/file.vda", &sReadParam, &pModelFile);

See Simple Load and Export for general information about loading model files.

Tessellation

This visualization data for this format is generated by the HOOPS Exchange tessellation engine.

B-rep

The VDA-FS B-rep only supports geometry in NURBS form. The only types of surface and curve geometry that can be found in a VDA-FS B-rep is:

  • B-spline curve
  • B-spline surface
  • Circular curve

PMI

This concept is not supported by VDA-FS.

Assembly

VDA-FS files may contain multiple components or objects. HOOPS Exchange represents these as a model tree that you can traverse using the standard structure APIs.

Datum planes and construction geometry are also supported and accessed through the assembly tree. Incremental load is not supported by our VDA-FS reader.

To learn more about how HOOPS Exchange handles assemblies, see our tutorial about assembly traversal.

Views

This concept is not supported by VDA-FS.

Metadata and Attributes

HOOPS Exchange can expose colors, materials, layers, and user-defined metadata when they are present in the source file.

See attributes_and_metadata for details on how to query and interpret this information.