How to use the paraview-glance/src/io/ReaderFactory.listSupportedExtensions function in paraview-glance

To help you get started, we’ve selected a few paraview-glance examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Kitware / paraview-glance / src / store / fileLoader.js View on Github external
function getSupportedExtensions() {
  return ['zip', 'raw', 'glance'].concat(
    ReaderFactory.listSupportedExtensions()
  );
}