├── .gitignore ├── BuildSupport.py ├── CHANGES ├── CMakeLists.txt ├── COPYING ├── ExampleSite.py ├── Field3D.doxyfile ├── README ├── SConscript ├── SConstruct ├── apps ├── f3dinfo │ ├── .gitignore │ ├── SConscript │ ├── SConstruct │ └── main.cpp ├── f3dmakemip │ ├── .gitignore │ ├── SConscript │ ├── SConstruct │ └── main.cpp ├── f3dmerge │ ├── .gitignore │ ├── SConscript │ ├── SConstruct │ └── main.cpp ├── f3dsample │ ├── .gitignore │ ├── SConscript │ ├── SConstruct │ └── main.cpp └── sample_code │ ├── create_and_write │ ├── SConscript │ ├── SConstruct │ └── main.cpp │ ├── mixed_types │ ├── SConscript │ ├── SConstruct │ └── main.cpp │ ├── read │ ├── SConscript │ ├── SConstruct │ └── main.cpp │ └── sparse_field_io │ ├── SConscript │ ├── SConstruct │ └── main.cpp ├── cmake └── FindILMBase.cmake ├── contrib └── maya_plugin │ └── exportF3d │ ├── Makefile.gnu │ └── exportF3d.cpp ├── export ├── ClassFactory.h ├── CoordSys.h ├── Curve.h ├── DenseField.h ├── Documentation.h ├── EmptyField.h ├── Exception.h ├── Field.h ├── Field3DFile.h ├── Field3DFileHDF5.h ├── FieldCache.h ├── FieldGroup.h ├── FieldIO.h ├── FieldInterp.h ├── FieldMapping.h ├── FieldMappingIO.h ├── FieldMetadata.h ├── FieldSampler.h ├── FieldWrapper.h ├── FileSequence.h ├── Hdf5Util.h ├── InitIO.h ├── Log.h ├── MACField.h ├── MACFieldUtil.h ├── MIPBase.h ├── MIPField.h ├── MIPInterp.h ├── MIPUtil.h ├── MinMaxUtil.h ├── OgawaFwd.h ├── PatternMatch.h ├── PluginLoader.h ├── ProceduralField.h ├── RefCount.h ├── Resample.h ├── SparseDataReader.h ├── SparseField.h ├── SparseFile.h ├── SpiMathLib.h ├── StdMathLib.h ├── Traits.h ├── Types.h └── ns.h ├── include ├── All.h ├── DenseFieldIO.h ├── Foundation.h ├── IArchive.h ├── IData.h ├── IGroup.h ├── IStreams.h ├── MACFieldIO.h ├── MIPFieldIO.h ├── OArchive.h ├── OData.h ├── OGroup.h ├── OStream.h ├── OgIAttribute.h ├── OgIDataset.h ├── OgIGroup.h ├── OgIO.h ├── OgOAttribute.h ├── OgODataset.h ├── OgOGroup.h ├── OgSparseDataReader.h ├── OgUtil.h ├── OgawaUtil.h ├── SparseFieldIO.h ├── UtilFoundation.h └── UtilPlainOldDataType.h ├── man └── f3dinfo.1 ├── ogawaToF3D.sh ├── src ├── ClassFactory.cpp ├── DenseFieldIO.cpp ├── Field.cpp ├── Field3DFile.cpp ├── Field3DFile.cpp.bk ├── Field3DFileHDF5.cpp ├── FieldCache.cpp ├── FieldInterp.cpp ├── FieldMapping.cpp ├── FieldMappingIO.cpp ├── FieldMetadata.cpp ├── FileSequence.cpp ├── Hdf5Util.cpp ├── IArchive.cpp ├── IData.cpp ├── IGroup.cpp ├── IStreams.cpp ├── InitIO.cpp ├── Log.cpp ├── MACFieldIO.cpp ├── MIPFieldIO.cpp ├── MIPUtil.cpp ├── MinMaxUtil.cpp ├── OArchive.cpp ├── OData.cpp ├── OGroup.cpp ├── OStream.cpp ├── OgIGroup.cpp ├── OgUtil.cpp ├── PatternMatch.cpp ├── PluginLoader.cpp ├── ProceduralField.cpp ├── Resample.cpp ├── SparseFieldIO.cpp └── SparseFile.cpp └── test ├── misc_tests ├── access_speed │ ├── SConscript │ ├── SConstruct │ └── main.cpp ├── lib_perf_test │ ├── .gitignore │ ├── Field3D_here │ │ └── .gitignore │ ├── INSTRUCTIONS │ ├── OpenVDB_here │ │ └── .gitignore │ ├── SConscript │ ├── SConstruct │ ├── src │ │ └── main.cpp │ └── test_results │ │ ├── graypage_tests.csv │ │ ├── graypage_tests.numbers │ │ ├── graypage_tests.pdf │ │ ├── graypage_tests.txt │ │ └── statstocsv.py └── threading_and_virtual_calls │ ├── SConscript │ ├── SConstruct │ └── main.cpp └── unit_tests ├── .gitignore ├── SConscript ├── SConstruct └── UnitTest.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/BuildSupport.py -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/CHANGES -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/COPYING -------------------------------------------------------------------------------- /ExampleSite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/ExampleSite.py -------------------------------------------------------------------------------- /Field3D.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/Field3D.doxyfile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/README -------------------------------------------------------------------------------- /SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/SConscript -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/SConstruct -------------------------------------------------------------------------------- /apps/f3dinfo/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.dblite 3 | -------------------------------------------------------------------------------- /apps/f3dinfo/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dinfo/SConscript -------------------------------------------------------------------------------- /apps/f3dinfo/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dinfo/SConstruct -------------------------------------------------------------------------------- /apps/f3dinfo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dinfo/main.cpp -------------------------------------------------------------------------------- /apps/f3dmakemip/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.dblite 3 | -------------------------------------------------------------------------------- /apps/f3dmakemip/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dmakemip/SConscript -------------------------------------------------------------------------------- /apps/f3dmakemip/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dmakemip/SConstruct -------------------------------------------------------------------------------- /apps/f3dmakemip/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dmakemip/main.cpp -------------------------------------------------------------------------------- /apps/f3dmerge/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.dblite 3 | -------------------------------------------------------------------------------- /apps/f3dmerge/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dmerge/SConscript -------------------------------------------------------------------------------- /apps/f3dmerge/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dmerge/SConstruct -------------------------------------------------------------------------------- /apps/f3dmerge/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dmerge/main.cpp -------------------------------------------------------------------------------- /apps/f3dsample/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.dblite 3 | -------------------------------------------------------------------------------- /apps/f3dsample/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dsample/SConscript -------------------------------------------------------------------------------- /apps/f3dsample/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dsample/SConstruct -------------------------------------------------------------------------------- /apps/f3dsample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/f3dsample/main.cpp -------------------------------------------------------------------------------- /apps/sample_code/create_and_write/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/create_and_write/SConscript -------------------------------------------------------------------------------- /apps/sample_code/create_and_write/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/create_and_write/SConstruct -------------------------------------------------------------------------------- /apps/sample_code/create_and_write/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/create_and_write/main.cpp -------------------------------------------------------------------------------- /apps/sample_code/mixed_types/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/mixed_types/SConscript -------------------------------------------------------------------------------- /apps/sample_code/mixed_types/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/mixed_types/SConstruct -------------------------------------------------------------------------------- /apps/sample_code/mixed_types/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/mixed_types/main.cpp -------------------------------------------------------------------------------- /apps/sample_code/read/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/read/SConscript -------------------------------------------------------------------------------- /apps/sample_code/read/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/read/SConstruct -------------------------------------------------------------------------------- /apps/sample_code/read/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/read/main.cpp -------------------------------------------------------------------------------- /apps/sample_code/sparse_field_io/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/sparse_field_io/SConscript -------------------------------------------------------------------------------- /apps/sample_code/sparse_field_io/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/sparse_field_io/SConstruct -------------------------------------------------------------------------------- /apps/sample_code/sparse_field_io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/apps/sample_code/sparse_field_io/main.cpp -------------------------------------------------------------------------------- /cmake/FindILMBase.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/cmake/FindILMBase.cmake -------------------------------------------------------------------------------- /contrib/maya_plugin/exportF3d/Makefile.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/contrib/maya_plugin/exportF3d/Makefile.gnu -------------------------------------------------------------------------------- /contrib/maya_plugin/exportF3d/exportF3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/contrib/maya_plugin/exportF3d/exportF3d.cpp -------------------------------------------------------------------------------- /export/ClassFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/ClassFactory.h -------------------------------------------------------------------------------- /export/CoordSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/CoordSys.h -------------------------------------------------------------------------------- /export/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/Curve.h -------------------------------------------------------------------------------- /export/DenseField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/DenseField.h -------------------------------------------------------------------------------- /export/Documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/Documentation.h -------------------------------------------------------------------------------- /export/EmptyField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/EmptyField.h -------------------------------------------------------------------------------- /export/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/Exception.h -------------------------------------------------------------------------------- /export/Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/Field.h -------------------------------------------------------------------------------- /export/Field3DFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/Field3DFile.h -------------------------------------------------------------------------------- /export/Field3DFileHDF5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/Field3DFileHDF5.h -------------------------------------------------------------------------------- /export/FieldCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/FieldCache.h -------------------------------------------------------------------------------- /export/FieldGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/FieldGroup.h -------------------------------------------------------------------------------- /export/FieldIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/FieldIO.h -------------------------------------------------------------------------------- /export/FieldInterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/FieldInterp.h -------------------------------------------------------------------------------- /export/FieldMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/FieldMapping.h -------------------------------------------------------------------------------- /export/FieldMappingIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/FieldMappingIO.h -------------------------------------------------------------------------------- /export/FieldMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/FieldMetadata.h -------------------------------------------------------------------------------- /export/FieldSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/FieldSampler.h -------------------------------------------------------------------------------- /export/FieldWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/FieldWrapper.h -------------------------------------------------------------------------------- /export/FileSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/FileSequence.h -------------------------------------------------------------------------------- /export/Hdf5Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/Hdf5Util.h -------------------------------------------------------------------------------- /export/InitIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/InitIO.h -------------------------------------------------------------------------------- /export/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/Log.h -------------------------------------------------------------------------------- /export/MACField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/MACField.h -------------------------------------------------------------------------------- /export/MACFieldUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/MACFieldUtil.h -------------------------------------------------------------------------------- /export/MIPBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/MIPBase.h -------------------------------------------------------------------------------- /export/MIPField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/MIPField.h -------------------------------------------------------------------------------- /export/MIPInterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/MIPInterp.h -------------------------------------------------------------------------------- /export/MIPUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/MIPUtil.h -------------------------------------------------------------------------------- /export/MinMaxUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/MinMaxUtil.h -------------------------------------------------------------------------------- /export/OgawaFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/OgawaFwd.h -------------------------------------------------------------------------------- /export/PatternMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/PatternMatch.h -------------------------------------------------------------------------------- /export/PluginLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/PluginLoader.h -------------------------------------------------------------------------------- /export/ProceduralField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/ProceduralField.h -------------------------------------------------------------------------------- /export/RefCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/RefCount.h -------------------------------------------------------------------------------- /export/Resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/Resample.h -------------------------------------------------------------------------------- /export/SparseDataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/SparseDataReader.h -------------------------------------------------------------------------------- /export/SparseField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/SparseField.h -------------------------------------------------------------------------------- /export/SparseFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/SparseFile.h -------------------------------------------------------------------------------- /export/SpiMathLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/SpiMathLib.h -------------------------------------------------------------------------------- /export/StdMathLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/StdMathLib.h -------------------------------------------------------------------------------- /export/Traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/Traits.h -------------------------------------------------------------------------------- /export/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/Types.h -------------------------------------------------------------------------------- /export/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/export/ns.h -------------------------------------------------------------------------------- /include/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/All.h -------------------------------------------------------------------------------- /include/DenseFieldIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/DenseFieldIO.h -------------------------------------------------------------------------------- /include/Foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/Foundation.h -------------------------------------------------------------------------------- /include/IArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/IArchive.h -------------------------------------------------------------------------------- /include/IData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/IData.h -------------------------------------------------------------------------------- /include/IGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/IGroup.h -------------------------------------------------------------------------------- /include/IStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/IStreams.h -------------------------------------------------------------------------------- /include/MACFieldIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/MACFieldIO.h -------------------------------------------------------------------------------- /include/MIPFieldIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/MIPFieldIO.h -------------------------------------------------------------------------------- /include/OArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OArchive.h -------------------------------------------------------------------------------- /include/OData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OData.h -------------------------------------------------------------------------------- /include/OGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OGroup.h -------------------------------------------------------------------------------- /include/OStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OStream.h -------------------------------------------------------------------------------- /include/OgIAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OgIAttribute.h -------------------------------------------------------------------------------- /include/OgIDataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OgIDataset.h -------------------------------------------------------------------------------- /include/OgIGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OgIGroup.h -------------------------------------------------------------------------------- /include/OgIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OgIO.h -------------------------------------------------------------------------------- /include/OgOAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OgOAttribute.h -------------------------------------------------------------------------------- /include/OgODataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OgODataset.h -------------------------------------------------------------------------------- /include/OgOGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OgOGroup.h -------------------------------------------------------------------------------- /include/OgSparseDataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OgSparseDataReader.h -------------------------------------------------------------------------------- /include/OgUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OgUtil.h -------------------------------------------------------------------------------- /include/OgawaUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/OgawaUtil.h -------------------------------------------------------------------------------- /include/SparseFieldIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/SparseFieldIO.h -------------------------------------------------------------------------------- /include/UtilFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/UtilFoundation.h -------------------------------------------------------------------------------- /include/UtilPlainOldDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/include/UtilPlainOldDataType.h -------------------------------------------------------------------------------- /man/f3dinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/man/f3dinfo.1 -------------------------------------------------------------------------------- /ogawaToF3D.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/ogawaToF3D.sh -------------------------------------------------------------------------------- /src/ClassFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/ClassFactory.cpp -------------------------------------------------------------------------------- /src/DenseFieldIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/DenseFieldIO.cpp -------------------------------------------------------------------------------- /src/Field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/Field.cpp -------------------------------------------------------------------------------- /src/Field3DFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/Field3DFile.cpp -------------------------------------------------------------------------------- /src/Field3DFile.cpp.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/Field3DFile.cpp.bk -------------------------------------------------------------------------------- /src/Field3DFileHDF5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/Field3DFileHDF5.cpp -------------------------------------------------------------------------------- /src/FieldCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/FieldCache.cpp -------------------------------------------------------------------------------- /src/FieldInterp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/FieldInterp.cpp -------------------------------------------------------------------------------- /src/FieldMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/FieldMapping.cpp -------------------------------------------------------------------------------- /src/FieldMappingIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/FieldMappingIO.cpp -------------------------------------------------------------------------------- /src/FieldMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/FieldMetadata.cpp -------------------------------------------------------------------------------- /src/FileSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/FileSequence.cpp -------------------------------------------------------------------------------- /src/Hdf5Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/Hdf5Util.cpp -------------------------------------------------------------------------------- /src/IArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/IArchive.cpp -------------------------------------------------------------------------------- /src/IData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/IData.cpp -------------------------------------------------------------------------------- /src/IGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/IGroup.cpp -------------------------------------------------------------------------------- /src/IStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/IStreams.cpp -------------------------------------------------------------------------------- /src/InitIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/InitIO.cpp -------------------------------------------------------------------------------- /src/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/Log.cpp -------------------------------------------------------------------------------- /src/MACFieldIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/MACFieldIO.cpp -------------------------------------------------------------------------------- /src/MIPFieldIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/MIPFieldIO.cpp -------------------------------------------------------------------------------- /src/MIPUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/MIPUtil.cpp -------------------------------------------------------------------------------- /src/MinMaxUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/MinMaxUtil.cpp -------------------------------------------------------------------------------- /src/OArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/OArchive.cpp -------------------------------------------------------------------------------- /src/OData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/OData.cpp -------------------------------------------------------------------------------- /src/OGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/OGroup.cpp -------------------------------------------------------------------------------- /src/OStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/OStream.cpp -------------------------------------------------------------------------------- /src/OgIGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/OgIGroup.cpp -------------------------------------------------------------------------------- /src/OgUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/OgUtil.cpp -------------------------------------------------------------------------------- /src/PatternMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/PatternMatch.cpp -------------------------------------------------------------------------------- /src/PluginLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/PluginLoader.cpp -------------------------------------------------------------------------------- /src/ProceduralField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/ProceduralField.cpp -------------------------------------------------------------------------------- /src/Resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/Resample.cpp -------------------------------------------------------------------------------- /src/SparseFieldIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/SparseFieldIO.cpp -------------------------------------------------------------------------------- /src/SparseFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/src/SparseFile.cpp -------------------------------------------------------------------------------- /test/misc_tests/access_speed/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/access_speed/SConscript -------------------------------------------------------------------------------- /test/misc_tests/access_speed/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/access_speed/SConstruct -------------------------------------------------------------------------------- /test/misc_tests/access_speed/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/access_speed/main.cpp -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | src/*.o 3 | -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/Field3D_here/.gitignore: -------------------------------------------------------------------------------- 1 | *.h 2 | *.cpp 3 | -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/INSTRUCTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/lib_perf_test/INSTRUCTIONS -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/OpenVDB_here/.gitignore: -------------------------------------------------------------------------------- 1 | openvdb 2 | -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/lib_perf_test/SConscript -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/lib_perf_test/SConstruct -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/lib_perf_test/src/main.cpp -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/test_results/graypage_tests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/lib_perf_test/test_results/graypage_tests.csv -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/test_results/graypage_tests.numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/lib_perf_test/test_results/graypage_tests.numbers -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/test_results/graypage_tests.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/lib_perf_test/test_results/graypage_tests.pdf -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/test_results/graypage_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/lib_perf_test/test_results/graypage_tests.txt -------------------------------------------------------------------------------- /test/misc_tests/lib_perf_test/test_results/statstocsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/lib_perf_test/test_results/statstocsv.py -------------------------------------------------------------------------------- /test/misc_tests/threading_and_virtual_calls/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/threading_and_virtual_calls/SConscript -------------------------------------------------------------------------------- /test/misc_tests/threading_and_virtual_calls/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/threading_and_virtual_calls/SConstruct -------------------------------------------------------------------------------- /test/misc_tests/threading_and_virtual_calls/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/misc_tests/threading_and_virtual_calls/main.cpp -------------------------------------------------------------------------------- /test/unit_tests/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.dblite 3 | -------------------------------------------------------------------------------- /test/unit_tests/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/unit_tests/SConscript -------------------------------------------------------------------------------- /test/unit_tests/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/unit_tests/SConstruct -------------------------------------------------------------------------------- /test/unit_tests/UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imageworks/Field3D/HEAD/test/unit_tests/UnitTest.cpp --------------------------------------------------------------------------------