├── .gitattributes ├── .gitignore ├── 3DSMax ├── 2010 │ └── CMakeLists.txt ├── 2011 │ └── CMakeLists.txt ├── 2012 │ └── CMakeLists.txt ├── 2013 │ └── CMakeLists.txt ├── 2014 │ └── CMakeLists.txt ├── 2015 │ └── CMakeLists.txt ├── 2016 │ └── CMakeLists.txt ├── 2017 │ └── CMakeLists.txt ├── .gitignore ├── Alembic.aps ├── Alembic.rc ├── AlembicArchiveStorage.cpp ├── AlembicArchiveStorage.h ├── AlembicCamera.cpp ├── AlembicCamera.h ├── AlembicCameraModifier.cpp ├── AlembicCameraModifier.h ├── AlembicCameraUtilities.cpp ├── AlembicCameraUtilities.h ├── AlembicCurves.cpp ├── AlembicCurves.h ├── AlembicDefinitions.h ├── AlembicExport.aps ├── AlembicFloatController.cpp ├── AlembicFloatController.h ├── AlembicIntermediatePolyMesh.cpp ├── AlembicIntermediatePolyMesh.h ├── AlembicIntermediatePolyMesh3DSMax.cpp ├── AlembicIntermediatePolyMesh3DSMax.h ├── AlembicLicensing.cpp ├── AlembicLicensing.h ├── AlembicLightUtilities.cpp ├── AlembicLightUtilities.h ├── AlembicMAXScript.cpp ├── AlembicMAXScript.h ├── AlembicMax.h ├── AlembicMeshGeomModifier.cpp ├── AlembicMeshGeomModifier.h ├── AlembicMeshNormalsModifier.cpp ├── AlembicMeshNormalsModifier.h ├── AlembicMeshTopoModifier.cpp ├── AlembicMeshTopoModifier.h ├── AlembicMeshUVWModifier.cpp ├── AlembicMeshUVWModifier.h ├── AlembicMeshUtilities.cpp ├── AlembicMeshUtilities.h ├── AlembicMetadataUtils.cpp ├── AlembicMetadataUtils.h ├── AlembicNames.h ├── AlembicNurbsModifier.cpp ├── AlembicNurbsModifier.h ├── AlembicNurbsUtilities.cpp ├── AlembicNurbsUtilities.h ├── AlembicObject.cpp ├── AlembicObject.h ├── AlembicParticles.cpp ├── AlembicParticles.h ├── AlembicParticlesExtInterface.cpp ├── AlembicParticlesExtInterface.h ├── AlembicPoints.cpp ├── AlembicPoints.h ├── AlembicPointsUtils.cpp ├── AlembicPointsUtils.h ├── AlembicPolyMsh.cpp ├── AlembicPolyMsh.h ├── AlembicPropertyUtils.cpp ├── AlembicPropertyUtils.h ├── AlembicRecursiveImporter.cpp ├── AlembicRecursiveImporter.h ├── AlembicSplineGeomModifier.cpp ├── AlembicSplineGeomModifier.h ├── AlembicSplineTopoModifier.cpp ├── AlembicSplineTopoModifier.h ├── AlembicSplineUtilities.cpp ├── AlembicSplineUtilities.h ├── AlembicVisCtrl.h ├── AlembicVisibilityController.cpp ├── AlembicVisibilityController.h ├── AlembicWriteJob.cpp ├── AlembicWriteJob.h ├── AlembicXform.cpp ├── AlembicXform.h ├── AlembicXformController.cpp ├── AlembicXformController.h ├── AlembicXformUtilities.cpp ├── AlembicXformUtilities.h ├── CMakeLists.txt ├── DLLEntry.cpp ├── EmptyPolyLineObject.cpp ├── EmptyPolyLineObject.h ├── EmptySplineObject.cpp ├── EmptySplineObject.h ├── MaxSceneTimeManager.cpp ├── MaxSceneTimeManager.h ├── MaxScripts │ ├── Exocortex-AlembicTimeControlUtilities.mcr │ ├── Exocortex-Dialog-AlembicExport.mcr │ ├── Exocortex-Dialog-AlembicImport.mcr │ ├── Exocortex-Helper-AlembicTimeControl.mcr │ ├── Exocortex-Helper-AlembicTimeControl_Mesh.mcr │ ├── Exocortex-Metadata.mcr │ └── Exocortex-Startup.ms ├── ObjectList.cpp ├── ObjectList.h ├── SceneEnumProc.cpp ├── SceneEnumProc.h ├── Utility.h ├── alembic.cpp ├── alembic.h ├── alembicExp.def ├── hashInstanceTable.cpp ├── hashInstanceTable.h ├── resource.h ├── sceneGraph.cpp ├── sceneGraph.h ├── stdafx.cpp ├── stdafx.h └── utility.cpp ├── Arnold ├── 3 │ └── CMakeLists.txt ├── 4 │ └── CMakeLists.txt ├── .gitattributes ├── .gitignore ├── AlembicLicensing.cpp ├── AlembicLicensing.h ├── ArnoldAlembic.versionScript ├── CMakeLists.txt ├── ExocortexServicesProxy.h ├── New shortcut.lnk ├── common.cpp ├── common.h ├── curves.cpp ├── curves.h ├── dataUniqueness.cpp ├── dataUniqueness.h ├── dso.cpp ├── instance.cpp ├── instance.h ├── nurbs.cpp ├── nurbs.h ├── points.cpp ├── points.h ├── polyMesh.cpp ├── polyMesh.h ├── stdafx.cpp ├── stdafx.h ├── utility.cpp └── utility.h ├── BUILDING_BOOST.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── ExocortexCMakeShared.txt ├── LICENSE.txt ├── Maya ├── 2011 │ ├── CMakeLists.txt │ ├── Maya2011ExocortexAlembic.mod │ └── MayaAlembic.versionScript ├── 2012 │ ├── CMakeLists.txt │ ├── Maya2012ExocortexAlembic.mod │ └── MayaAlembic.versionScript ├── 2013 │ ├── CMakeLists.txt │ ├── Maya2013ExocortexAlembic.mod │ └── MayaAlembic.versionScript ├── 2014 │ ├── CMakeLists.txt │ ├── Maya2014ExocortexAlembic.mod │ └── MayaAlembic.versionScript ├── 2015 │ ├── CMakeLists.txt │ ├── Maya2015ExocortexAlembic.mod │ └── MayaAlembic.versionScript ├── 2016 │ ├── CMakeLists.txt │ ├── Maya2016ExocortexAlembic.mod │ └── MayaAlembic.versionScript ├── 2017 │ ├── CMakeLists.txt │ ├── Maya2017ExocortexAlembic.mod │ └── MayaAlembic.versionScript ├── .gitattributes ├── .gitignore ├── 2013.5 │ ├── CMakeLists.txt │ ├── Maya2013.5ExocortexAlembic.mod │ └── MayaAlembic.versionScript ├── 2016.5 │ ├── CMakeLists.txt │ ├── Maya2016.5ExocortexAlembic.mod │ └── MayaAlembic.versionScript ├── AlembicArchiveStorage.cpp ├── AlembicArchiveStorage.h ├── AlembicCamera.cpp ├── AlembicCamera.h ├── AlembicCurves.cpp ├── AlembicCurves.h ├── AlembicFileNode.cpp ├── AlembicFileNode.h ├── AlembicHair.cpp ├── AlembicHair.h ├── AlembicImport.cpp ├── AlembicImport.h ├── AlembicLicensing.cpp ├── AlembicLicensing.h ├── AlembicObject.cpp ├── AlembicObject.h ├── AlembicPoints.cpp ├── AlembicPoints.h ├── AlembicPolyMesh.cpp ├── AlembicPolyMesh.h ├── AlembicSubD.cpp ├── AlembicSubD.h ├── AlembicTimeControl.cpp ├── AlembicTimeControl.h ├── AlembicValidateNameCmd.cpp ├── AlembicValidateNameCmd.h ├── AlembicWriteJob.cpp ├── AlembicWriteJob.h ├── AlembicXform.cpp ├── AlembicXform.h ├── AttributesReading.cpp ├── AttributesReading.h ├── AttributesWriter.cpp ├── AttributesWriter.h ├── CMakeLists.txt ├── ExocortexServicesProxy.h ├── MEL │ ├── ExocortexAlembic │ │ ├── __init__.py │ │ ├── _attach.py │ │ ├── _export.py │ │ ├── _functions.py │ │ └── _import.py │ ├── assignShader.mel │ ├── attach.mel │ ├── export.mel │ ├── import.mel │ └── menu.mel ├── MayaUtility.cpp ├── MayaUtility.h ├── MetaData.h ├── UI │ ├── ExocortexAlembicAttach.ui │ ├── ExocortexAlembicExport.ui │ └── ExocortexAlembicImport.ui ├── Utility.h ├── alembic.cpp ├── metadata.cpp ├── sceneGraph.cpp ├── sceneGraph.h ├── stdafx.cpp ├── stdafx.h └── utility.cpp ├── Python ├── .gitattributes ├── .gitignore ├── 2.5.2 │ └── CMakeLists.txt ├── 2.6.7 │ └── CMakeLists.txt ├── 2.7.2 │ └── CMakeLists.txt ├── AlembicLicensing.cpp ├── AlembicLicensing.h ├── CMakeLists.txt ├── ExocortexServicesProxy.h ├── extension.cpp ├── extension.h ├── iarchive.cpp ├── iarchive.h ├── icompoundproperty.cpp ├── icompoundproperty.h ├── iobject.cpp ├── iobject.h ├── iproperty.cpp ├── iproperty.h ├── ixformproperty.cpp ├── ixformproperty.h ├── oarchive.cpp ├── oarchive.h ├── ocompoundproperty.cpp ├── ocompoundproperty.h ├── oobject.cpp ├── oobject.h ├── oproperty.cpp ├── oproperty.h ├── oxformproperty.cpp ├── oxformproperty.h ├── references │ ├── AbcEnums.cpp │ ├── CMakeLists.txt │ ├── CoreAbstractTypes.cpp │ ├── IArchive.cpp │ ├── ICompoundProperty.cpp │ ├── IObject.cpp │ ├── ITypedScalarProperties.cpp │ ├── IUntypedProperties.cpp │ ├── SampleSelector.cpp │ ├── main.cpp │ └── mkITypedProperties.py ├── samples │ ├── OBJ2ABC.py │ ├── cmpABCs.py │ ├── concatABCs.py │ ├── copyABC.py │ ├── filterABC.py │ ├── mergeABCs.py │ ├── overwriteProp.py │ ├── renameABC.py │ ├── retimeABC.py │ └── viewABC.py ├── stdafx.cpp ├── stdafx.h ├── timesampling.cpp └── timesampling.h ├── README.md ├── Shared ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── CommonUtils │ ├── CMakeLists.txt │ ├── CommonAbcCache.cpp │ ├── CommonAbcCache.h │ ├── CommonAlembic.h │ ├── CommonImport.cpp │ ├── CommonImport.h │ ├── CommonIntermediatePolyMesh.cpp │ ├── CommonIntermediatePolyMesh.h │ ├── CommonLicensing.h │ ├── CommonLog.h │ ├── CommonMeshUtilities.cpp │ ├── CommonMeshUtilities.h │ ├── CommonOS.h │ ├── CommonPBar.h │ ├── CommonProfiler.h │ ├── CommonRegex.cpp │ ├── CommonRegex.h │ ├── CommonSceneGraph.cpp │ ├── CommonSceneGraph.h │ ├── CommonSubtreeMerge.cpp │ ├── CommonSubtreeMerge.h │ ├── CommonUtilities.cpp │ └── CommonUtilities.h ├── Doc │ ├── 00-LicensingGuide.url │ ├── 01-IntroductionToExocortexCrate.url │ ├── 02-ExocortexCrateForSoftimageAndArnold.url │ ├── 03-ExocortexCrateFor3DSMax.url │ ├── 04-ExocortexCrateForMaya.url │ ├── 05-ExocortexCrateForPython.url │ ├── 06-LegalNotices.url │ ├── LICENSE.txt │ ├── Tutorial01-3DSMaxThinkingParticlesToMayaAndSoftimage.url │ ├── Tutorial02-ExportAndImportInto3DSMax.url │ ├── Tutorial03-PointCachesInMaya3DSMaxAndSoftimage.url │ └── Tutorial04-TransferingMultipleUVSetsFrom3DSMaxToMaya.url ├── alembic-1.5.0 │ ├── ACKNOWLEDGEMENTS.txt │ ├── AbcOpenGL │ │ ├── All.h │ │ ├── CMakeLists.txt │ │ ├── DrawContext.h │ │ ├── Drawable.h │ │ ├── Foundation.h │ │ ├── GLCamera.cpp │ │ ├── GLCamera.h │ │ ├── ICurvesDrw.cpp │ │ ├── ICurvesDrw.h │ │ ├── INuPatchDrw.cpp │ │ ├── INuPatchDrw.h │ │ ├── IObjectDrw.cpp │ │ ├── IObjectDrw.h │ │ ├── IPointsDrw.cpp │ │ ├── IPointsDrw.h │ │ ├── IPolyMeshDrw.cpp │ │ ├── IPolyMeshDrw.h │ │ ├── ISubDDrw.cpp │ │ ├── ISubDDrw.h │ │ ├── IXformDrw.cpp │ │ ├── IXformDrw.h │ │ ├── MeshDrwHelper.cpp │ │ ├── MeshDrwHelper.h │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── SceneWrapper.cpp │ │ └── SceneWrapper.h │ ├── Alembic │ │ ├── Abc │ │ │ ├── All.h │ │ │ ├── ArchiveInfo.cpp │ │ │ ├── ArchiveInfo.h │ │ │ ├── Argument.h │ │ │ ├── Base.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ErrorHandler.cpp │ │ │ ├── ErrorHandler.h │ │ │ ├── Foundation.h │ │ │ ├── IArchive.cpp │ │ │ ├── IArchive.h │ │ │ ├── IArrayProperty.cpp │ │ │ ├── IArrayProperty.h │ │ │ ├── IBaseProperty.h │ │ │ ├── ICompoundProperty.cpp │ │ │ ├── ICompoundProperty.h │ │ │ ├── IObject.cpp │ │ │ ├── IObject.h │ │ │ ├── ISampleSelector.cpp │ │ │ ├── ISampleSelector.h │ │ │ ├── IScalarProperty.cpp │ │ │ ├── IScalarProperty.h │ │ │ ├── ISchema.h │ │ │ ├── ISchemaObject.h │ │ │ ├── ITypedArrayProperty.h │ │ │ ├── ITypedScalarProperty.h │ │ │ ├── OArchive.cpp │ │ │ ├── OArchive.h │ │ │ ├── OArrayProperty.cpp │ │ │ ├── OArrayProperty.h │ │ │ ├── OBaseProperty.h │ │ │ ├── OCompoundProperty.cpp │ │ │ ├── OCompoundProperty.h │ │ │ ├── OObject.cpp │ │ │ ├── OObject.h │ │ │ ├── OScalarProperty.cpp │ │ │ ├── OScalarProperty.h │ │ │ ├── OSchema.h │ │ │ ├── OSchemaObject.h │ │ │ ├── OTypedArrayProperty.h │ │ │ ├── OTypedScalarProperty.h │ │ │ ├── Reference.cpp │ │ │ ├── Reference.h │ │ │ ├── Tests │ │ │ │ ├── ArchiveTest.cpp │ │ │ │ ├── ArrayPropertyTest.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CacheControlTest.cpp │ │ │ │ ├── CompileTest.cpp │ │ │ │ ├── CyclicPropertyTest.cpp │ │ │ │ ├── IdentityPropertyTest.cpp │ │ │ │ ├── InstanceTest.cpp │ │ │ │ ├── ObjectTests.cpp │ │ │ │ ├── ObjectsAndPropertiesTest.cpp │ │ │ │ ├── OctessenceBug16.cpp │ │ │ │ ├── OctessenceBug17.cpp │ │ │ │ ├── ParentingTest.cpp │ │ │ │ ├── PropertyTests.cpp │ │ │ │ ├── RedundantDataTest.cpp │ │ │ │ ├── TypedArraySampleTest.cpp │ │ │ │ ├── UniformPropertyTest.cpp │ │ │ │ └── test1.cpp │ │ │ ├── TypedArraySample.h │ │ │ └── TypedPropertyTraits.h │ │ ├── AbcCollection │ │ │ ├── All.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ICollections.cpp │ │ │ ├── ICollections.h │ │ │ ├── OCollections.cpp │ │ │ ├── OCollections.h │ │ │ ├── SchemaInfoDeclarations.h │ │ │ └── Tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── CollectionTest.cpp │ │ ├── AbcCoreAbstract │ │ │ ├── All.h │ │ │ ├── ArchiveReader.cpp │ │ │ ├── ArchiveReader.h │ │ │ ├── ArchiveWriter.cpp │ │ │ ├── ArchiveWriter.h │ │ │ ├── ArrayPropertyReader.cpp │ │ │ ├── ArrayPropertyReader.h │ │ │ ├── ArrayPropertyWriter.cpp │ │ │ ├── ArrayPropertyWriter.h │ │ │ ├── ArraySample.cpp │ │ │ ├── ArraySample.h │ │ │ ├── ArraySampleKey.h │ │ │ ├── BasePropertyReader.cpp │ │ │ ├── BasePropertyReader.h │ │ │ ├── BasePropertyWriter.cpp │ │ │ ├── BasePropertyWriter.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CompoundPropertyReader.cpp │ │ │ ├── CompoundPropertyReader.h │ │ │ ├── CompoundPropertyWriter.cpp │ │ │ ├── CompoundPropertyWriter.h │ │ │ ├── DataType.h │ │ │ ├── ForwardDeclarations.h │ │ │ ├── Foundation.cpp │ │ │ ├── Foundation.h │ │ │ ├── MetaData.h │ │ │ ├── ObjectHeader.h │ │ │ ├── ObjectReader.cpp │ │ │ ├── ObjectReader.h │ │ │ ├── ObjectWriter.cpp │ │ │ ├── ObjectWriter.h │ │ │ ├── PropertyHeader.h │ │ │ ├── ReadArraySampleCache.cpp │ │ │ ├── ReadArraySampleCache.h │ │ │ ├── ScalarPropertyReader.cpp │ │ │ ├── ScalarPropertyReader.h │ │ │ ├── ScalarPropertyWriter.cpp │ │ │ ├── ScalarPropertyWriter.h │ │ │ ├── ScalarSample.cpp │ │ │ ├── ScalarSample.h │ │ │ ├── Tests │ │ │ │ ├── Assert.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CompoundPropertyTest1.cpp │ │ │ │ ├── OctessenceBug38.cpp │ │ │ │ ├── OctessenceBug58.cpp │ │ │ │ └── TestTimeSampling.cpp │ │ │ ├── TimeSampling.cpp │ │ │ ├── TimeSampling.h │ │ │ ├── TimeSamplingType.cpp │ │ │ └── TimeSamplingType.h │ │ ├── AbcCoreFactory │ │ │ ├── All.h │ │ │ ├── CMakeLists.txt │ │ │ ├── IFactory.cpp │ │ │ └── IFactory.h │ │ ├── AbcCoreHDF5 │ │ │ ├── All.h │ │ │ ├── AprImpl.cpp │ │ │ ├── AprImpl.h │ │ │ ├── ApwImpl.cpp │ │ │ ├── ApwImpl.h │ │ │ ├── ArImpl.cpp │ │ │ ├── ArImpl.h │ │ │ ├── AwImpl.cpp │ │ │ ├── AwImpl.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CacheImpl.cpp │ │ │ ├── CacheImpl.h │ │ │ ├── CprData.cpp │ │ │ ├── CprData.h │ │ │ ├── CprImpl.cpp │ │ │ ├── CprImpl.h │ │ │ ├── CpwData.cpp │ │ │ ├── CpwData.h │ │ │ ├── CpwImpl.cpp │ │ │ ├── CpwImpl.h │ │ │ ├── DataTypeRegistry.cpp │ │ │ ├── DataTypeRegistry.h │ │ │ ├── Foundation.h │ │ │ ├── HDF5Hierarchy.cpp │ │ │ ├── HDF5Hierarchy.h │ │ │ ├── HDF5HierarchyReader.cpp │ │ │ ├── HDF5HierarchyReader.h │ │ │ ├── HDF5HierarchyWriter.cpp │ │ │ ├── HDF5HierarchyWriter.h │ │ │ ├── HDF5Util.cpp │ │ │ ├── HDF5Util.h │ │ │ ├── OrData.cpp │ │ │ ├── OrData.h │ │ │ ├── OrImpl.cpp │ │ │ ├── OrImpl.h │ │ │ ├── OwData.cpp │ │ │ ├── OwData.h │ │ │ ├── OwImpl.cpp │ │ │ ├── OwImpl.h │ │ │ ├── ReadUtil.cpp │ │ │ ├── ReadUtil.h │ │ │ ├── ReadWrite.cpp │ │ │ ├── ReadWrite.h │ │ │ ├── SimplePrImpl.h │ │ │ ├── SimplePwImpl.h │ │ │ ├── SprImpl.cpp │ │ │ ├── SprImpl.h │ │ │ ├── SpwImpl.cpp │ │ │ ├── SpwImpl.h │ │ │ ├── StringReadUtil.cpp │ │ │ ├── StringReadUtil.h │ │ │ ├── StringWriteUtil.cpp │ │ │ ├── StringWriteUtil.h │ │ │ ├── Tests │ │ │ │ ├── ArchiveTests.cpp │ │ │ │ ├── ArrayPropertyTests.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConstantPropsNumSampsTest.cpp │ │ │ │ ├── ObjectTests.cpp │ │ │ │ ├── ScalarPropertyTests.cpp │ │ │ │ ├── TimeSamplingTests.cpp │ │ │ │ └── test1.cpp │ │ │ ├── WriteUtil.cpp │ │ │ ├── WriteUtil.h │ │ │ └── WrittenArraySampleMap.h │ │ ├── AbcCoreOgawa │ │ │ ├── All.h │ │ │ ├── AprImpl.cpp │ │ │ ├── AprImpl.h │ │ │ ├── ApwImpl.cpp │ │ │ ├── ApwImpl.h │ │ │ ├── ArImpl.cpp │ │ │ ├── ArImpl.h │ │ │ ├── AwImpl.cpp │ │ │ ├── AwImpl.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CprData.cpp │ │ │ ├── CprData.h │ │ │ ├── CprImpl.cpp │ │ │ ├── CprImpl.h │ │ │ ├── CpwData.cpp │ │ │ ├── CpwData.h │ │ │ ├── CpwImpl.cpp │ │ │ ├── CpwImpl.h │ │ │ ├── Foundation.h │ │ │ ├── MetaDataMap.cpp │ │ │ ├── MetaDataMap.h │ │ │ ├── OrData.cpp │ │ │ ├── OrData.h │ │ │ ├── OrImpl.cpp │ │ │ ├── OrImpl.h │ │ │ ├── OwData.cpp │ │ │ ├── OwData.h │ │ │ ├── OwImpl.cpp │ │ │ ├── OwImpl.h │ │ │ ├── ReadUtil.cpp │ │ │ ├── ReadUtil.h │ │ │ ├── ReadWrite.cpp │ │ │ ├── ReadWrite.h │ │ │ ├── SprImpl.cpp │ │ │ ├── SprImpl.h │ │ │ ├── SpwImpl.cpp │ │ │ ├── SpwImpl.h │ │ │ ├── StreamManager.cpp │ │ │ ├── StreamManager.h │ │ │ ├── Tests │ │ │ │ ├── ArchiveTests.cpp │ │ │ │ ├── ArrayPropertyTests.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConstantPropsNumSampsTest.cpp │ │ │ │ ├── HashesTests.cpp │ │ │ │ ├── ObjectTests.cpp │ │ │ │ ├── ScalarPropertyTests.cpp │ │ │ │ └── TimeSamplingTests.cpp │ │ │ ├── WriteUtil.cpp │ │ │ ├── WriteUtil.h │ │ │ └── WrittenSampleMap.h │ │ ├── AbcGeom │ │ │ ├── All.h │ │ │ ├── ArchiveBounds.cpp │ │ │ ├── ArchiveBounds.h │ │ │ ├── Basis.cpp │ │ │ ├── Basis.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CameraSample.cpp │ │ │ ├── CameraSample.h │ │ │ ├── CurveType.h │ │ │ ├── FaceSetExclusivity.h │ │ │ ├── FilmBackXformOp.cpp │ │ │ ├── FilmBackXformOp.h │ │ │ ├── Foundation.h │ │ │ ├── GeometryScope.cpp │ │ │ ├── GeometryScope.h │ │ │ ├── ICamera.cpp │ │ │ ├── ICamera.h │ │ │ ├── ICurves.cpp │ │ │ ├── ICurves.h │ │ │ ├── IFaceSet.cpp │ │ │ ├── IFaceSet.h │ │ │ ├── IGeomBase.h │ │ │ ├── IGeomParam.h │ │ │ ├── ILight.cpp │ │ │ ├── ILight.h │ │ │ ├── INuPatch.cpp │ │ │ ├── INuPatch.h │ │ │ ├── IPoints.cpp │ │ │ ├── IPoints.h │ │ │ ├── IPolyMesh.cpp │ │ │ ├── IPolyMesh.h │ │ │ ├── ISubD.cpp │ │ │ ├── ISubD.h │ │ │ ├── IXform.cpp │ │ │ ├── IXform.h │ │ │ ├── OCamera.cpp │ │ │ ├── OCamera.h │ │ │ ├── OCurves.cpp │ │ │ ├── OCurves.h │ │ │ ├── OFaceSet.cpp │ │ │ ├── OFaceSet.h │ │ │ ├── OGeomBase.h │ │ │ ├── OGeomParam.h │ │ │ ├── OLight.cpp │ │ │ ├── OLight.h │ │ │ ├── ONuPatch.cpp │ │ │ ├── ONuPatch.h │ │ │ ├── OPoints.cpp │ │ │ ├── OPoints.h │ │ │ ├── OPolyMesh.cpp │ │ │ ├── OPolyMesh.h │ │ │ ├── OSubD.cpp │ │ │ ├── OSubD.h │ │ │ ├── OXform.cpp │ │ │ ├── OXform.h │ │ │ ├── SchemaInfoDeclarations.h │ │ │ ├── Tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CameraTest.cpp │ │ │ │ ├── CompileTest.cpp │ │ │ │ ├── CurvesData.cpp │ │ │ │ ├── CurvesData.h │ │ │ │ ├── CurvesTest.cpp │ │ │ │ ├── GeomBaseTest.cpp │ │ │ │ ├── HelperLibTest.cpp │ │ │ │ ├── LightTest.cpp │ │ │ │ ├── MeshData.cpp │ │ │ │ ├── MeshData.h │ │ │ │ ├── NurbsData.cpp │ │ │ │ ├── NurbsData.h │ │ │ │ ├── NurbsTest.cpp │ │ │ │ ├── PlayGround.cpp │ │ │ │ ├── PointsTest.cpp │ │ │ │ ├── PolyMeshTest.cpp │ │ │ │ ├── SchemaMatchingTest.cpp │ │ │ │ ├── SubDFaceSetTest.cpp │ │ │ │ ├── SubDTest.cpp │ │ │ │ ├── TransformingMeshTest.cpp │ │ │ │ ├── XformTests.cpp │ │ │ │ └── XformTests2.cpp │ │ │ ├── Visibility.cpp │ │ │ ├── Visibility.h │ │ │ ├── XformOp.cpp │ │ │ ├── XformOp.h │ │ │ ├── XformSample.cpp │ │ │ └── XformSample.h │ │ ├── AbcMaterial │ │ │ ├── All.h │ │ │ ├── CMakeLists.txt │ │ │ ├── IMaterial.cpp │ │ │ ├── IMaterial.h │ │ │ ├── InternalUtil.cpp │ │ │ ├── InternalUtil.h │ │ │ ├── MaterialAssignment.cpp │ │ │ ├── MaterialAssignment.h │ │ │ ├── MaterialFlatten.cpp │ │ │ ├── MaterialFlatten.h │ │ │ ├── OMaterial.cpp │ │ │ ├── OMaterial.h │ │ │ ├── README │ │ │ ├── SchemaInfoDeclarations.h │ │ │ └── Tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MaterialAssignAndFlattenTest.cpp │ │ │ │ ├── MaterialFlattenTest.cpp │ │ │ │ ├── NetworkNodeTest.cpp │ │ │ │ ├── PrintMaterial.cpp │ │ │ │ ├── PrintMaterial.h │ │ │ │ ├── WriteGeometryWithMaterials.cpp │ │ │ │ ├── WriteHasAMaterial.cpp │ │ │ │ └── WriteMaterial.cpp │ │ ├── CMakeLists.txt │ │ ├── Ogawa │ │ │ ├── All.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Foundation.h │ │ │ ├── IArchive.cpp │ │ │ ├── IArchive.h │ │ │ ├── IData.cpp │ │ │ ├── IData.h │ │ │ ├── IGroup.cpp │ │ │ ├── IGroup.h │ │ │ ├── IStreams.cpp │ │ │ ├── IStreams.h │ │ │ ├── OArchive.cpp │ │ │ ├── OArchive.h │ │ │ ├── OData.cpp │ │ │ ├── OData.h │ │ │ ├── OGroup.cpp │ │ │ ├── OGroup.h │ │ │ ├── OStream.cpp │ │ │ ├── OStream.h │ │ │ └── Tests │ │ │ │ ├── ArchiveTest.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── SimpleTest.cpp │ │ └── Util │ │ │ ├── All.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Digest.h │ │ │ ├── Dimensions.h │ │ │ ├── Exception.h │ │ │ ├── Foundation.h │ │ │ ├── Murmur3.cpp │ │ │ ├── Murmur3.h │ │ │ ├── Naming.cpp │ │ │ ├── Naming.h │ │ │ ├── OperatorBool.h │ │ │ ├── PlainOldDataType.h │ │ │ ├── SpookyV2.cpp │ │ │ ├── SpookyV2.h │ │ │ ├── Tests │ │ │ ├── CMakeLists.txt │ │ │ ├── DimensionsTestJeffs.cpp │ │ │ ├── NamingTest.cpp │ │ │ ├── OperatorBoolTest.cpp │ │ │ └── TokenMapTest.cpp │ │ │ ├── TokenMap.cpp │ │ │ └── TokenMap.h │ ├── Bootstrap │ │ ├── CMakeHelloWorldUtil │ │ │ ├── CMakeLists.txt │ │ │ ├── HelloUtil.cpp │ │ │ ├── HelloUtil.h │ │ │ └── Tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ ├── CMakeLists.txt │ │ └── TrivialBoostUsageUtil │ │ │ ├── CMakeLists.txt │ │ │ ├── TbuUtil.cpp │ │ │ ├── TbuUtil.h │ │ │ └── Tests │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── CMakeLists.txt │ ├── FEEDBACK.txt │ ├── LICENSE.txt │ ├── README.txt │ └── python │ │ └── abcutils │ │ ├── CMakeCache.py │ │ ├── Path.py │ │ └── __init__.py ├── hdf5-1.8.9 │ ├── ACKNOWLEDGMENTS │ ├── CMakeLists.txt │ ├── COPYING │ ├── CTestConfig.cmake │ ├── MANIFEST │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.dist │ ├── Makefile.in │ ├── README.txt │ ├── aclocal.m4 │ ├── acsite.m4 │ ├── c++ │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── chunks.cpp │ │ │ ├── compound.cpp │ │ │ ├── create.cpp │ │ │ ├── expected.out │ │ │ ├── extend_ds.cpp │ │ │ ├── h5group.cpp │ │ │ ├── readdata.cpp │ │ │ ├── run-c++-ex.sh.in │ │ │ ├── testh5c++.sh.in │ │ │ └── writedata.cpp │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── H5AbstractDs.cpp │ │ │ ├── H5AbstractDs.h │ │ │ ├── H5Alltypes.h │ │ │ ├── H5ArrayType.cpp │ │ │ ├── H5ArrayType.h │ │ │ ├── H5AtomType.cpp │ │ │ ├── H5AtomType.h │ │ │ ├── H5Attribute.cpp │ │ │ ├── H5Attribute.h │ │ │ ├── H5Classes.h │ │ │ ├── H5CommonFG.cpp │ │ │ ├── H5CommonFG.h │ │ │ ├── H5CompType.cpp │ │ │ ├── H5CompType.h │ │ │ ├── H5Cpp.h │ │ │ ├── H5CppDoc.h │ │ │ ├── H5DataSet.cpp │ │ │ ├── H5DataSet.h │ │ │ ├── H5DataSpace.cpp │ │ │ ├── H5DataSpace.h │ │ │ ├── H5DataType.cpp │ │ │ ├── H5DataType.h │ │ │ ├── H5DcreatProp.cpp │ │ │ ├── H5DcreatProp.h │ │ │ ├── H5DxferProp.cpp │ │ │ ├── H5DxferProp.h │ │ │ ├── H5EnumType.cpp │ │ │ ├── H5EnumType.h │ │ │ ├── H5Exception.cpp │ │ │ ├── H5Exception.h │ │ │ ├── H5FaccProp.cpp │ │ │ ├── H5FaccProp.h │ │ │ ├── H5FcreatProp.cpp │ │ │ ├── H5FcreatProp.h │ │ │ ├── H5File.cpp │ │ │ ├── H5File.h │ │ │ ├── H5FloatType.cpp │ │ │ ├── H5FloatType.h │ │ │ ├── H5Group.cpp │ │ │ ├── H5Group.h │ │ │ ├── H5IdComponent.cpp │ │ │ ├── H5IdComponent.h │ │ │ ├── H5Include.h │ │ │ ├── H5IntType.cpp │ │ │ ├── H5IntType.h │ │ │ ├── H5Library.cpp │ │ │ ├── H5Library.h │ │ │ ├── H5Object.cpp │ │ │ ├── H5Object.h │ │ │ ├── H5PredType.cpp │ │ │ ├── H5PredType.h │ │ │ ├── H5PropList.cpp │ │ │ ├── H5PropList.h │ │ │ ├── H5StrType.cpp │ │ │ ├── H5StrType.h │ │ │ ├── H5VarLenType.cpp │ │ │ ├── H5VarLenType.h │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── RM_stylesheet.css │ │ │ ├── cpp_doc_config │ │ │ ├── h5c++.in │ │ │ ├── header.html │ │ │ └── header_files │ │ │ │ ├── filelist.xml │ │ │ │ ├── image001.jpg │ │ │ │ └── image002.jpg │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── H5srcdir_str.h.in │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── dsets.cpp │ │ │ ├── h5cpputil.cpp │ │ │ ├── h5cpputil.h │ │ │ ├── tattr.cpp │ │ │ ├── tcompound.cpp │ │ │ ├── testhdf5.cpp │ │ │ ├── tfile.cpp │ │ │ ├── tfilter.cpp │ │ │ ├── th5s.cpp │ │ │ ├── th5s.h5 │ │ │ ├── tlinks.cpp │ │ │ ├── trefer.cpp │ │ │ ├── ttypes.cpp │ │ │ └── tvlstr.cpp │ ├── config │ │ ├── BlankForm │ │ ├── COPYING │ │ ├── Makefile.am.blank │ │ ├── apple │ │ ├── cmake │ │ │ ├── CPack.cmake │ │ │ ├── CTestCustom.cmake │ │ │ ├── CheckTypeSize.cmake │ │ │ ├── ConfigureChecks.cmake │ │ │ ├── ConversionTests.c │ │ │ ├── FindHDF5.cmake │ │ │ ├── FindMPI.cmake │ │ │ ├── FindSZIP.cmake │ │ │ ├── GetTimeOfDayTest.cpp │ │ │ ├── H5cxx_config.h.in │ │ │ ├── H5pubconf.h.in │ │ │ ├── HDF5Macros.cmake │ │ │ ├── HDF5Tests.c │ │ │ ├── HDF5UseFortran.cmake │ │ │ ├── HDFLibMacros.cmake │ │ │ ├── HDFMacros.cmake │ │ │ ├── NSIS.InstallOptions.ini.in │ │ │ ├── NSIS.template.in │ │ │ ├── cacheinit.cmake │ │ │ ├── grepTest.cmake │ │ │ ├── hdf5-config-version.cmake.in │ │ │ ├── hdf5-config.cmake.build.in │ │ │ ├── hdf5-config.cmake.install.in │ │ │ ├── libhdf5.settings.cmake.in │ │ │ ├── mccacheinit.cmake │ │ │ ├── prunTest.cmake │ │ │ ├── runTest.cmake │ │ │ ├── userblockTest.cmake │ │ │ ├── vfdTest.cmake │ │ │ └── xlatefile.c │ │ ├── commence.am │ │ ├── conclude.am │ │ ├── craynv │ │ ├── dec-flags │ │ ├── examples.am │ │ ├── freebsd │ │ ├── gnu-fflags │ │ ├── gnu-flags │ │ ├── hpux11.23 │ │ ├── i386-pc-cygwin32 │ │ ├── i686-pc-cygwin │ │ ├── ia64-linux-gnu │ │ ├── ibm-aix │ │ ├── ibm-flags │ │ ├── intel-fflags │ │ ├── intel-flags │ │ ├── irix6.x │ │ ├── linux-gnu │ │ ├── linux-gnuaout │ │ ├── linux-gnulibc1 │ │ ├── linux-gnulibc2 │ │ ├── lt_vers.am │ │ ├── nec-superux14.1 │ │ ├── pgi-fflags │ │ ├── pgi-flags │ │ ├── powerpc-ibm-aix5.x │ │ ├── site-specific │ │ │ └── BlankForm │ │ ├── solaris2.x │ │ ├── sv1-cray │ │ └── x86_64-redstorm-linux-gnu │ ├── configure │ ├── configure.in │ ├── hl │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── c++ │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ptExampleFL.cpp │ │ │ │ ├── ptExampleVL.cpp │ │ │ │ └── run-hlc++-ex.sh.in │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── H5PacketTable.cpp │ │ │ │ ├── H5PacketTable.h │ │ │ │ ├── Makefile.am │ │ │ │ └── Makefile.in │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ptableTest.cpp │ │ │ │ └── ptableTest.h │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ex_ds1.c │ │ │ ├── ex_image1.c │ │ │ ├── ex_image2.c │ │ │ ├── ex_lite1.c │ │ │ ├── ex_lite2.c │ │ │ ├── ex_lite3.c │ │ │ ├── ex_table_01.c │ │ │ ├── ex_table_02.c │ │ │ ├── ex_table_03.c │ │ │ ├── ex_table_04.c │ │ │ ├── ex_table_05.c │ │ │ ├── ex_table_06.c │ │ │ ├── ex_table_07.c │ │ │ ├── ex_table_08.c │ │ │ ├── ex_table_09.c │ │ │ ├── ex_table_10.c │ │ │ ├── ex_table_11.c │ │ │ ├── ex_table_12.c │ │ │ ├── pal_rgb.h │ │ │ ├── ptExampleFL.c │ │ │ ├── ptExampleVL.c │ │ │ ├── run-hl-ex.sh │ │ │ └── run-hlc-ex.sh.in │ │ ├── fortran │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── ex_ds1.f90 │ │ │ │ ├── exlite.f90 │ │ │ │ └── run-hlfortran-ex.sh.in │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── H5DSfc.c │ │ │ │ ├── H5DSff.f90 │ │ │ │ ├── H5IMcc.c │ │ │ │ ├── H5IMcc.h │ │ │ │ ├── H5IMfc.c │ │ │ │ ├── H5IMff.f90 │ │ │ │ ├── H5LTf90proto.h │ │ │ │ ├── H5LTfc.c │ │ │ │ ├── H5TBfc.c │ │ │ │ ├── H5TBff.f90 │ │ │ │ ├── Makefile.am │ │ │ │ └── Makefile.in │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── tstds.f90 │ │ │ │ ├── tstimage.f90 │ │ │ │ ├── tstlite.f90 │ │ │ │ └── tsttable.f90 │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── H5DS.c │ │ │ ├── H5DSprivate.h │ │ │ ├── H5DSpublic.h │ │ │ ├── H5HLprivate2.h │ │ │ ├── H5IM.c │ │ │ ├── H5IMprivate.h │ │ │ ├── H5IMpublic.h │ │ │ ├── H5LT.c │ │ │ ├── H5LTanalyze.c │ │ │ ├── H5LTanalyze.l │ │ │ ├── H5LTparse.c │ │ │ ├── H5LTparse.h │ │ │ ├── H5LTparse.y │ │ │ ├── H5LTprivate.h │ │ │ ├── H5LTpublic.h │ │ │ ├── H5PT.c │ │ │ ├── H5PTprivate.h │ │ │ ├── H5PTpublic.h │ │ │ ├── H5TB.c │ │ │ ├── H5TBprivate.h │ │ │ ├── H5TBpublic.h │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── hdf5_hl.h │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── H5srcdir_str.h.in │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── dsdata.txt │ │ │ ├── dslat.txt │ │ │ ├── dslon.txt │ │ │ ├── dtype_file.txt │ │ │ ├── dtype_file_readable.txt │ │ │ ├── earth.pal │ │ │ ├── gen_test_ds.c │ │ │ ├── h5hltest.h │ │ │ ├── pal_rgb.h │ │ │ ├── sepia.pal │ │ │ ├── test_ds.c │ │ │ ├── test_ds_be.h5 │ │ │ ├── test_ds_le.h5 │ │ │ ├── test_file_image.c │ │ │ ├── test_image.c │ │ │ ├── test_lite.c │ │ │ ├── test_packet.c │ │ │ ├── test_table.c │ │ │ ├── test_table_be.hdf5 │ │ │ ├── test_table_cray.hdf5 │ │ │ └── test_table_le.hdf5 │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── gif2h5 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── decompress.c │ │ │ ├── gif.h │ │ │ ├── gif2hdf.c │ │ │ ├── gif2mem.c │ │ │ ├── gifread.c │ │ │ ├── h52gifgentst.c │ │ │ ├── h52giftest.sh │ │ │ ├── hdf2gif.c │ │ │ ├── hdfgifwr.c │ │ │ ├── testfiles │ │ │ ├── h52giftst.h5 │ │ │ └── image1.gif │ │ │ └── writehdf.c │ ├── perform │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── benchpar.c │ │ ├── build_h5perf_alone.sh │ │ ├── build_h5perf_serial_alone.sh │ │ ├── chunk.c │ │ ├── gen_report.pl │ │ ├── iopipe.c │ │ ├── mpi-perf.c │ │ ├── overhead.c │ │ ├── perf.c │ │ ├── perf_meta.c │ │ ├── pio_engine.c │ │ ├── pio_perf.c │ │ ├── pio_perf.h │ │ ├── pio_standalone.c │ │ ├── pio_standalone.h │ │ ├── pio_timer.c │ │ ├── pio_timer.h │ │ ├── sio_engine.c │ │ ├── sio_perf.c │ │ ├── sio_perf.h │ │ ├── sio_standalone.c │ │ ├── sio_standalone.h │ │ ├── sio_timer.c │ │ ├── sio_timer.h │ │ └── zip_perf.c │ ├── src │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── H5.c │ │ ├── H5A.c │ │ ├── H5AC.c │ │ ├── H5ACpkg.h │ │ ├── H5ACprivate.h │ │ ├── H5ACpublic.h │ │ ├── H5Abtree2.c │ │ ├── H5Adense.c │ │ ├── H5Adeprec.c │ │ ├── H5Aint.c │ │ ├── H5Apkg.h │ │ ├── H5Aprivate.h │ │ ├── H5Apublic.h │ │ ├── H5Atest.c │ │ ├── H5B.c │ │ ├── H5B2.c │ │ ├── H5B2cache.c │ │ ├── H5B2dbg.c │ │ ├── H5B2hdr.c │ │ ├── H5B2int.c │ │ ├── H5B2pkg.h │ │ ├── H5B2private.h │ │ ├── H5B2public.h │ │ ├── H5B2stat.c │ │ ├── H5B2test.c │ │ ├── H5Bcache.c │ │ ├── H5Bdbg.c │ │ ├── H5Bpkg.h │ │ ├── H5Bprivate.h │ │ ├── H5Bpublic.h │ │ ├── H5C.c │ │ ├── H5CS.c │ │ ├── H5CSprivate.h │ │ ├── H5Cpkg.h │ │ ├── H5Cprivate.h │ │ ├── H5Cpublic.h │ │ ├── H5D.c │ │ ├── H5Dbtree.c │ │ ├── H5Dchunk.c │ │ ├── H5Dcompact.c │ │ ├── H5Dcontig.c │ │ ├── H5Ddbg.c │ │ ├── H5Ddeprec.c │ │ ├── H5Defl.c │ │ ├── H5Dfill.c │ │ ├── H5Dint.c │ │ ├── H5Dio.c │ │ ├── H5Dlayout.c │ │ ├── H5Dmpio.c │ │ ├── H5Doh.c │ │ ├── H5Dpkg.h │ │ ├── H5Dprivate.h │ │ ├── H5Dpublic.h │ │ ├── H5Dscatgath.c │ │ ├── H5Dselect.c │ │ ├── H5Dtest.c │ │ ├── H5E.c │ │ ├── H5Edefin.h │ │ ├── H5Edeprec.c │ │ ├── H5Einit.h │ │ ├── H5Eint.c │ │ ├── H5Epkg.h │ │ ├── H5Eprivate.h │ │ ├── H5Epubgen.h │ │ ├── H5Epublic.h │ │ ├── H5Eterm.h │ │ ├── H5F.c │ │ ├── H5FD.c │ │ ├── H5FDcore.c │ │ ├── H5FDcore.h │ │ ├── H5FDdirect.c │ │ ├── H5FDdirect.h │ │ ├── H5FDfamily.c │ │ ├── H5FDfamily.h │ │ ├── H5FDint.c │ │ ├── H5FDlog.c │ │ ├── H5FDlog.h │ │ ├── H5FDmpi.c │ │ ├── H5FDmpi.h │ │ ├── H5FDmpio.c │ │ ├── H5FDmpio.h │ │ ├── H5FDmpiposix.c │ │ ├── H5FDmpiposix.h │ │ ├── H5FDmulti.c │ │ ├── H5FDmulti.h │ │ ├── H5FDpkg.h │ │ ├── H5FDprivate.h │ │ ├── H5FDpublic.h │ │ ├── H5FDsec2.c │ │ ├── H5FDsec2.h │ │ ├── H5FDspace.c │ │ ├── H5FDstdio.c │ │ ├── H5FDstdio.h │ │ ├── H5FDwindows.c │ │ ├── H5FDwindows.h │ │ ├── H5FL.c │ │ ├── H5FLprivate.h │ │ ├── H5FO.c │ │ ├── H5FOprivate.h │ │ ├── H5FS.c │ │ ├── H5FScache.c │ │ ├── H5FSdbg.c │ │ ├── H5FSpkg.h │ │ ├── H5FSprivate.h │ │ ├── H5FSpublic.h │ │ ├── H5FSsection.c │ │ ├── H5FSstat.c │ │ ├── H5FStest.c │ │ ├── H5Faccum.c │ │ ├── H5Fcwfs.c │ │ ├── H5Fdbg.c │ │ ├── H5Fefc.c │ │ ├── H5Ffake.c │ │ ├── H5Fio.c │ │ ├── H5Fmount.c │ │ ├── H5Fmpi.c │ │ ├── H5Fpkg.h │ │ ├── H5Fprivate.h │ │ ├── H5Fpublic.h │ │ ├── H5Fquery.c │ │ ├── H5Fsfile.c │ │ ├── H5Fsuper.c │ │ ├── H5Fsuper_cache.c │ │ ├── H5Ftest.c │ │ ├── H5G.c │ │ ├── H5Gbtree2.c │ │ ├── H5Gcache.c │ │ ├── H5Gcompact.c │ │ ├── H5Gdense.c │ │ ├── H5Gdeprec.c │ │ ├── H5Gent.c │ │ ├── H5Gint.c │ │ ├── H5Glink.c │ │ ├── H5Gloc.c │ │ ├── H5Gname.c │ │ ├── H5Gnode.c │ │ ├── H5Gobj.c │ │ ├── H5Goh.c │ │ ├── H5Gpkg.h │ │ ├── H5Gprivate.h │ │ ├── H5Gpublic.h │ │ ├── H5Groot.c │ │ ├── H5Gstab.c │ │ ├── H5Gtest.c │ │ ├── H5Gtraverse.c │ │ ├── H5HF.c │ │ ├── H5HFbtree2.c │ │ ├── H5HFcache.c │ │ ├── H5HFdbg.c │ │ ├── H5HFdblock.c │ │ ├── H5HFdtable.c │ │ ├── H5HFhdr.c │ │ ├── H5HFhuge.c │ │ ├── H5HFiblock.c │ │ ├── H5HFiter.c │ │ ├── H5HFman.c │ │ ├── H5HFpkg.h │ │ ├── H5HFprivate.h │ │ ├── H5HFpublic.h │ │ ├── H5HFsection.c │ │ ├── H5HFspace.c │ │ ├── H5HFstat.c │ │ ├── H5HFtest.c │ │ ├── H5HFtiny.c │ │ ├── H5HG.c │ │ ├── H5HGcache.c │ │ ├── H5HGdbg.c │ │ ├── H5HGpkg.h │ │ ├── H5HGprivate.h │ │ ├── H5HGpublic.h │ │ ├── H5HGquery.c │ │ ├── H5HL.c │ │ ├── H5HLcache.c │ │ ├── H5HLdbg.c │ │ ├── H5HLint.c │ │ ├── H5HLpkg.h │ │ ├── H5HLprivate.h │ │ ├── H5HLpublic.h │ │ ├── H5HP.c │ │ ├── H5HPprivate.h │ │ ├── H5I.c │ │ ├── H5Ipkg.h │ │ ├── H5Iprivate.h │ │ ├── H5Ipublic.h │ │ ├── H5Itest.c │ │ ├── H5L.c │ │ ├── H5Lexternal.c │ │ ├── H5Lpkg.h │ │ ├── H5Lprivate.h │ │ ├── H5Lpublic.h │ │ ├── H5MF.c │ │ ├── H5MFaggr.c │ │ ├── H5MFdbg.c │ │ ├── H5MFpkg.h │ │ ├── H5MFprivate.h │ │ ├── H5MFsection.c │ │ ├── H5MM.c │ │ ├── H5MMprivate.h │ │ ├── H5MMpublic.h │ │ ├── H5MP.c │ │ ├── H5MPpkg.h │ │ ├── H5MPprivate.h │ │ ├── H5MPtest.c │ │ ├── H5O.c │ │ ├── H5Oainfo.c │ │ ├── H5Oalloc.c │ │ ├── H5Oattr.c │ │ ├── H5Oattribute.c │ │ ├── H5Obogus.c │ │ ├── H5Obtreek.c │ │ ├── H5Ocache.c │ │ ├── H5Ochunk.c │ │ ├── H5Ocont.c │ │ ├── H5Ocopy.c │ │ ├── H5Odbg.c │ │ ├── H5Odrvinfo.c │ │ ├── H5Odtype.c │ │ ├── H5Oefl.c │ │ ├── H5Ofill.c │ │ ├── H5Oginfo.c │ │ ├── H5Olayout.c │ │ ├── H5Olinfo.c │ │ ├── H5Olink.c │ │ ├── H5Omessage.c │ │ ├── H5Omtime.c │ │ ├── H5Oname.c │ │ ├── H5Onull.c │ │ ├── H5Opkg.h │ │ ├── H5Opline.c │ │ ├── H5Oprivate.h │ │ ├── H5Opublic.h │ │ ├── H5Orefcount.c │ │ ├── H5Osdspace.c │ │ ├── H5Oshared.c │ │ ├── H5Oshared.h │ │ ├── H5Oshmesg.c │ │ ├── H5Ostab.c │ │ ├── H5Otest.c │ │ ├── H5Ounknown.c │ │ ├── H5P.c │ │ ├── H5Pacpl.c │ │ ├── H5Pdapl.c │ │ ├── H5Pdcpl.c │ │ ├── H5Pdeprec.c │ │ ├── H5Pdxpl.c │ │ ├── H5Pfapl.c │ │ ├── H5Pfcpl.c │ │ ├── H5Pfmpl.c │ │ ├── H5Pgcpl.c │ │ ├── H5Pint.c │ │ ├── H5Plapl.c │ │ ├── H5Plcpl.c │ │ ├── H5Pocpl.c │ │ ├── H5Pocpypl.c │ │ ├── H5Ppkg.h │ │ ├── H5Pprivate.h │ │ ├── H5Ppublic.h │ │ ├── H5Pstrcpl.c │ │ ├── H5Ptest.c │ │ ├── H5R.c │ │ ├── H5RC.c │ │ ├── H5RCprivate.h │ │ ├── H5RS.c │ │ ├── H5RSprivate.h │ │ ├── H5Rdeprec.c │ │ ├── H5Rpkg.h │ │ ├── H5Rprivate.h │ │ ├── H5Rpublic.h │ │ ├── H5S.c │ │ ├── H5SL.c │ │ ├── H5SLprivate.h │ │ ├── H5SM.c │ │ ├── H5SMbtree2.c │ │ ├── H5SMcache.c │ │ ├── H5SMmessage.c │ │ ├── H5SMpkg.h │ │ ├── H5SMprivate.h │ │ ├── H5SMtest.c │ │ ├── H5ST.c │ │ ├── H5STprivate.h │ │ ├── H5Sall.c │ │ ├── H5Sdbg.c │ │ ├── H5Shyper.c │ │ ├── H5Smpio.c │ │ ├── H5Snone.c │ │ ├── H5Spkg.h │ │ ├── H5Spoint.c │ │ ├── H5Sprivate.h │ │ ├── H5Spublic.h │ │ ├── H5Sselect.c │ │ ├── H5Stest.c │ │ ├── H5T.c │ │ ├── H5TS.c │ │ ├── H5TSprivate.h │ │ ├── H5Tarray.c │ │ ├── H5Tbit.c │ │ ├── H5Tcommit.c │ │ ├── H5Tcompound.c │ │ ├── H5Tconv.c │ │ ├── H5Tcset.c │ │ ├── H5Tdbg.c │ │ ├── H5Tdeprec.c │ │ ├── H5Tenum.c │ │ ├── H5Tfields.c │ │ ├── H5Tfixed.c │ │ ├── H5Tfloat.c │ │ ├── H5Tnative.c │ │ ├── H5Toffset.c │ │ ├── H5Toh.c │ │ ├── H5Topaque.c │ │ ├── H5Torder.c │ │ ├── H5Tpad.c │ │ ├── H5Tpkg.h │ │ ├── H5Tprecis.c │ │ ├── H5Tprivate.h │ │ ├── H5Tpublic.h │ │ ├── H5Tstrpad.c │ │ ├── H5Tvisit.c │ │ ├── H5Tvlen.c │ │ ├── H5V.c │ │ ├── H5Vprivate.h │ │ ├── H5WB.c │ │ ├── H5WBprivate.h │ │ ├── H5Z.c │ │ ├── H5Zdeflate.c │ │ ├── H5Zfletcher32.c │ │ ├── H5Znbit.c │ │ ├── H5Zpkg.h │ │ ├── H5Zprivate.h │ │ ├── H5Zpublic.h │ │ ├── H5Zscaleoffset.c │ │ ├── H5Zshuffle.c │ │ ├── H5Zszip.c │ │ ├── H5Ztrans.c │ │ ├── H5api_adpt.h │ │ ├── H5checksum.c │ │ ├── H5config.h.in │ │ ├── H5dbg.c │ │ ├── H5detect.c │ │ ├── H5err.txt │ │ ├── H5make_libsettings.c │ │ ├── H5overflow.h │ │ ├── H5overflow.txt │ │ ├── H5private.h │ │ ├── H5public.h │ │ ├── H5system.c │ │ ├── H5timer.c │ │ ├── H5trace.c │ │ ├── H5vers.txt │ │ ├── H5version.h │ │ ├── H5win32defs.h │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── hdf5.h │ │ └── libhdf5.settings.in │ └── windows │ │ ├── COPYING │ │ ├── DO_NOT_USE_THESE_FILES_TO_BUILD_HDF5.txt │ │ ├── InstallExamples.bat │ │ ├── InstallcppExamples.BAT │ │ ├── Installf90Examples.BAT │ │ ├── c++ │ │ ├── examples │ │ │ ├── allcppexamples │ │ │ │ ├── allcppexamples.sln │ │ │ │ └── allcppexamples.vcproj │ │ │ ├── chunkstest │ │ │ │ └── chunkstest.vcproj │ │ │ ├── chunkstestdll │ │ │ │ └── chunkstestdll.vcproj │ │ │ ├── compoundtest │ │ │ │ └── compoundtest.vcproj │ │ │ ├── compoundtestdll │ │ │ │ └── compoundtestdll.vcproj │ │ │ ├── createtest │ │ │ │ └── createtest.vcproj │ │ │ ├── createtestdll │ │ │ │ └── createtestdll.vcproj │ │ │ ├── extend_dstest │ │ │ │ └── extend_dstest.vcproj │ │ │ ├── extend_dstestdll │ │ │ │ └── extend_dstestdll.vcproj │ │ │ ├── h5grouptest │ │ │ │ └── h5grouptest.vcproj │ │ │ ├── h5grouptestdll │ │ │ │ └── h5grouptestdll.vcproj │ │ │ ├── readdatatest │ │ │ │ └── readdatatest.vcproj │ │ │ ├── readdatatestdll │ │ │ │ └── readdatatestdll.vcproj │ │ │ ├── testcppExamples.BAT │ │ │ ├── writedatatest │ │ │ │ └── writedatatest.vcproj │ │ │ └── writedatatestdll │ │ │ │ └── writedatatestdll.vcproj │ │ └── test │ │ │ ├── H5srcdir_str.h │ │ │ ├── checkcpptests.bat │ │ │ ├── testhdf5_cpp │ │ │ └── testhdf5_cpp.vcproj │ │ │ └── testhdf5_cppdll │ │ │ └── testhdf5_cppdll.vcproj │ │ ├── copy_hdf.bat │ │ ├── hdf5bt.BAT │ │ ├── hdf5build.BAT │ │ ├── hdf5build_examples.BAT │ │ ├── hdf5check.BAT │ │ ├── hl │ │ ├── c++ │ │ │ └── test │ │ │ │ ├── checkhlcpptests.bat │ │ │ │ ├── hl_test_table_cpp │ │ │ │ └── hl_test_table_cpp.vcproj │ │ │ │ └── hl_test_table_cppdll │ │ │ │ └── hl_test_table_cppdll.vcproj │ │ ├── examples │ │ │ ├── allhlcexamples │ │ │ │ ├── allhlcexamples.sln │ │ │ │ └── allhlcexamples.vcproj │ │ │ ├── ex_ds1 │ │ │ │ └── ex_ds1.vcproj │ │ │ ├── ex_ds1dll │ │ │ │ └── ex_ds1dll.vcproj │ │ │ ├── ex_image1 │ │ │ │ └── ex_image1.vcproj │ │ │ ├── ex_image1dll │ │ │ │ └── ex_image1dll.vcproj │ │ │ ├── ex_image2 │ │ │ │ └── ex_image2.vcproj │ │ │ ├── ex_image2dll │ │ │ │ └── ex_image2dll.vcproj │ │ │ ├── ex_lite1 │ │ │ │ └── ex_lite1.vcproj │ │ │ ├── ex_lite1dll │ │ │ │ └── ex_lite1dll.vcproj │ │ │ ├── ex_lite2 │ │ │ │ └── ex_lite2.vcproj │ │ │ ├── ex_lite2dll │ │ │ │ └── ex_lite2dll.vcproj │ │ │ ├── ex_lite3 │ │ │ │ └── ex_lite3.vcproj │ │ │ ├── ex_lite3dll │ │ │ │ └── ex_lite3dll.vcproj │ │ │ ├── ex_table01 │ │ │ │ └── ex_table01.vcproj │ │ │ ├── ex_table01dll │ │ │ │ └── ex_table01dll.vcproj │ │ │ ├── ex_table02 │ │ │ │ └── ex_table02.vcproj │ │ │ ├── ex_table02dll │ │ │ │ └── ex_table02dll.vcproj │ │ │ ├── ex_table03 │ │ │ │ └── ex_table03.vcproj │ │ │ ├── ex_table03dll │ │ │ │ └── ex_table03dll.vcproj │ │ │ ├── ex_table04 │ │ │ │ └── ex_table04.vcproj │ │ │ ├── ex_table04dll │ │ │ │ └── ex_table04dll.vcproj │ │ │ ├── ex_table05 │ │ │ │ └── ex_table05.vcproj │ │ │ ├── ex_table05dll │ │ │ │ └── ex_table05dll.vcproj │ │ │ ├── ex_table06 │ │ │ │ └── ex_table06.vcproj │ │ │ ├── ex_table06dll │ │ │ │ └── ex_table06dll.vcproj │ │ │ ├── ex_table07 │ │ │ │ └── ex_table07.vcproj │ │ │ ├── ex_table07dll │ │ │ │ └── ex_table07dll.vcproj │ │ │ ├── ex_table08 │ │ │ │ └── ex_table08.vcproj │ │ │ ├── ex_table08dll │ │ │ │ └── ex_table08dll.vcproj │ │ │ ├── ex_table09 │ │ │ │ └── ex_table09.vcproj │ │ │ ├── ex_table09dll │ │ │ │ └── ex_table09dll.vcproj │ │ │ ├── ex_table10 │ │ │ │ └── ex_table10.vcproj │ │ │ ├── ex_table10dll │ │ │ │ └── ex_table10dll.vcproj │ │ │ ├── ex_table11 │ │ │ │ └── ex_table11.vcproj │ │ │ ├── ex_table11dll │ │ │ │ └── ex_table11dll.vcproj │ │ │ ├── ex_table12 │ │ │ │ └── ex_table12.vcproj │ │ │ ├── ex_table12dll │ │ │ │ └── ex_table12dll.vcproj │ │ │ ├── ptExampleFL │ │ │ │ └── ptExampleFL.vcproj │ │ │ ├── ptExampleFLdll │ │ │ │ └── ptExampleFLdll.vcproj │ │ │ ├── ptExampleVL │ │ │ │ └── ptExampleVL.vcproj │ │ │ ├── ptExampleVLdll │ │ │ │ └── ptExampleVLdll.vcproj │ │ │ └── test_hl_cexamples.BAT │ │ ├── fortran │ │ │ ├── examples │ │ │ │ ├── allhlf90examples │ │ │ │ │ ├── allhlf90examples.sln │ │ │ │ │ ├── allhlf90examples.vcproj │ │ │ │ │ └── lahey_allhlf90examples.sln │ │ │ │ ├── ex_lite │ │ │ │ │ ├── ex_lite.lfproj │ │ │ │ │ └── ex_lite.vfproj │ │ │ │ ├── ex_litedll │ │ │ │ │ └── ex_litedll.vfproj │ │ │ │ └── test_hl_f90examples.BAT │ │ │ └── test │ │ │ │ ├── checkhlfortrantests.bat │ │ │ │ ├── hl_test_image_fortran │ │ │ │ ├── hl_test_image_fortran.lfproj │ │ │ │ └── hl_test_image_fortran.vfproj │ │ │ │ ├── hl_test_image_fortrandll │ │ │ │ └── hl_test_image_fortrandll.vfproj │ │ │ │ ├── hl_test_lite_fortran │ │ │ │ ├── hl_test_lite_fortran.lfproj │ │ │ │ └── hl_test_lite_fortran.vfproj │ │ │ │ ├── hl_test_lite_fortrandll │ │ │ │ └── hl_test_lite_fortrandll.vfproj │ │ │ │ ├── hl_test_table_fortran │ │ │ │ ├── hl_test_table_fortran.lfproj │ │ │ │ └── hl_test_table_fortran.vfproj │ │ │ │ └── hl_test_table_fortrandll │ │ │ │ └── hl_test_table_fortrandll.vfproj │ │ ├── test │ │ │ ├── H5srcdir_str.h │ │ │ ├── checkhltests.bat │ │ │ ├── hl_test_ds │ │ │ │ └── hl_test_ds.vcproj │ │ │ ├── hl_test_dsdll │ │ │ │ └── hl_test_dsdll.vcproj │ │ │ ├── hl_test_image │ │ │ │ └── hl_test_image.vcproj │ │ │ ├── hl_test_imagedll │ │ │ │ └── hl_test_imagedll.vcproj │ │ │ ├── hl_test_lite │ │ │ │ └── hl_test_lite.vcproj │ │ │ ├── hl_test_litedll │ │ │ │ └── hl_test_litedll.vcproj │ │ │ ├── hl_test_packet │ │ │ │ └── hl_test_packet.vcproj │ │ │ ├── hl_test_packetdll │ │ │ │ └── hl_test_packetdll.vcproj │ │ │ ├── hl_test_table │ │ │ │ └── hl_test_table.vcproj │ │ │ └── hl_test_tabledll │ │ │ │ └── hl_test_tabledll.vcproj │ │ └── tools │ │ │ ├── gif2h5 │ │ │ └── h52giftest.bat │ │ │ ├── gifconv │ │ │ ├── gif2h5.vcproj │ │ │ └── h52gif.vcproj │ │ │ └── gifconvdll │ │ │ ├── gif2h5dll.vcproj │ │ │ └── h52gifdll.vcproj │ │ ├── install_dll.BAT │ │ ├── install_hlcexamples.BAT │ │ ├── install_hlf90examples.BAT │ │ ├── installhdf5lib.bat │ │ ├── misc │ │ └── typegen │ │ │ ├── h5fort_type_defines │ │ │ ├── h5fort_type_defines.lfproj │ │ │ └── h5fort_type_defines.vfproj │ │ │ ├── h5fortran_detect │ │ │ ├── h5fortran_detect.lfproj │ │ │ └── h5fortran_detect.vfproj │ │ │ ├── h5libsettings │ │ │ └── h5libsettings.vcproj │ │ │ ├── h5match_types │ │ │ └── h5match_types.vcproj │ │ │ └── h5tinit │ │ │ └── h5tinit.vcproj │ │ └── perform │ │ ├── checkperformtests.bat │ │ ├── perf_serial │ │ └── perf_serial.vcproj │ │ └── perf_serialdll │ │ └── perf_serialdll.vcproj ├── ilmbase-1.0.2 │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── Half │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── eLut.h │ │ ├── eLut │ │ │ └── eLut.cpp │ │ ├── half.cpp │ │ ├── half.h │ │ ├── halfFunction.h │ │ ├── halfLimits.h │ │ ├── toFloat.h │ │ └── toFloat │ │ │ └── toFloat.cpp │ ├── HalfTest │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── main.cpp │ │ ├── testArithmetic.cpp │ │ ├── testArithmetic.h │ │ ├── testBitPatterns.cpp │ │ ├── testBitPatterns.h │ │ ├── testClassification.cpp │ │ ├── testClassification.h │ │ ├── testError.cpp │ │ ├── testError.h │ │ ├── testFunction.cpp │ │ ├── testFunction.h │ │ ├── testLimits.cpp │ │ ├── testLimits.h │ │ ├── testSize.cpp │ │ └── testSize.h │ ├── Iex │ │ ├── Iex.h │ │ ├── IexBaseExc.cpp │ │ ├── IexBaseExc.h │ │ ├── IexErrnoExc.h │ │ ├── IexMacros.h │ │ ├── IexMathExc.h │ │ ├── IexThrowErrnoExc.cpp │ │ ├── IexThrowErrnoExc.h │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── IexTest │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── main.cpp │ │ ├── testBaseExc.cpp │ │ └── testBaseExc.h │ ├── IlmBase.pc.in │ ├── IlmThread │ │ ├── IlmThread.cpp │ │ ├── IlmThread.h │ │ ├── IlmThreadMutex.cpp │ │ ├── IlmThreadMutex.h │ │ ├── IlmThreadMutexPosix.cpp │ │ ├── IlmThreadMutexWin32.cpp │ │ ├── IlmThreadPool.cpp │ │ ├── IlmThreadPool.h │ │ ├── IlmThreadPosix.cpp │ │ ├── IlmThreadSemaphore.cpp │ │ ├── IlmThreadSemaphore.h │ │ ├── IlmThreadSemaphorePosix.cpp │ │ ├── IlmThreadSemaphorePosixCompat.cpp │ │ ├── IlmThreadSemaphoreWin32.cpp │ │ ├── IlmThreadWin32.cpp │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── Imath │ │ ├── ImathBox.cpp │ │ ├── ImathBox.h │ │ ├── ImathBoxAlgo.h │ │ ├── ImathColor.h │ │ ├── ImathColorAlgo.cpp │ │ ├── ImathColorAlgo.h │ │ ├── ImathEuler.h │ │ ├── ImathExc.h │ │ ├── ImathFrame.h │ │ ├── ImathFrustum.h │ │ ├── ImathFun.cpp │ │ ├── ImathFun.h │ │ ├── ImathGL.h │ │ ├── ImathGLU.h │ │ ├── ImathHalfLimits.h │ │ ├── ImathInt64.h │ │ ├── ImathInterval.h │ │ ├── ImathLimits.h │ │ ├── ImathLine.h │ │ ├── ImathLineAlgo.h │ │ ├── ImathMath.h │ │ ├── ImathMatrix.h │ │ ├── ImathMatrixAlgo.cpp │ │ ├── ImathMatrixAlgo.h │ │ ├── ImathPlane.h │ │ ├── ImathPlatform.h │ │ ├── ImathQuat.h │ │ ├── ImathRandom.cpp │ │ ├── ImathRandom.h │ │ ├── ImathRoots.h │ │ ├── ImathShear.cpp │ │ ├── ImathShear.h │ │ ├── ImathSphere.h │ │ ├── ImathVec.cpp │ │ ├── ImathVec.h │ │ ├── ImathVecAlgo.h │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── ImathTest │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── main.cpp │ │ ├── testBox.cpp │ │ ├── testBox.h │ │ ├── testBoxAlgo.cpp │ │ ├── testBoxAlgo.h │ │ ├── testColor.cpp │ │ ├── testColor.h │ │ ├── testExtractEuler.cpp │ │ ├── testExtractEuler.h │ │ ├── testExtractSHRT.cpp │ │ ├── testExtractSHRT.h │ │ ├── testFrustum.cpp │ │ ├── testFrustum.h │ │ ├── testFun.cpp │ │ ├── testFun.h │ │ ├── testInvert.cpp │ │ ├── testInvert.h │ │ ├── testLineAlgo.cpp │ │ ├── testLineAlgo.h │ │ ├── testMatrix.cpp │ │ ├── testMatrix.h │ │ ├── testQuat.cpp │ │ ├── testQuat.h │ │ ├── testQuatSetRotation.cpp │ │ ├── testQuatSetRotation.h │ │ ├── testQuatSlerp.cpp │ │ ├── testQuatSlerp.h │ │ ├── testRandom.cpp │ │ ├── testRandom.h │ │ ├── testRoots.cpp │ │ ├── testRoots.h │ │ ├── testShear.cpp │ │ ├── testShear.h │ │ ├── testVec.cpp │ │ └── testVec.h │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README.CVS │ ├── README.OSX │ ├── README.win32 │ ├── aclocal.m4 │ ├── bootstrap │ ├── config.guess │ ├── config.sub │ ├── config.windows │ │ └── IlmBaseConfig.h │ ├── config │ │ ├── IlmBaseConfig.h │ │ ├── IlmBaseConfig.h.in │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ ├── m4 │ │ └── threads.m4 │ ├── missing │ └── vc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── buildLUTs.cmd │ │ ├── createDLL │ │ ├── OptionParser.cpp │ │ ├── OptionParser.h │ │ └── createDLL.cpp │ │ ├── installCreateDLL.cmd │ │ ├── installHalf.cmd │ │ ├── installIex.cmd │ │ ├── installIlmThread.cmd │ │ ├── installImath.cmd │ │ ├── vc7 │ │ └── IlmBase │ │ │ ├── Half │ │ │ ├── Debug │ │ │ │ └── .cvsignore │ │ │ ├── Half.vcproj │ │ │ └── Release │ │ │ │ └── .cvsignore │ │ │ ├── HalfTest │ │ │ ├── Debug │ │ │ │ └── .cvsignore │ │ │ ├── HalfTest.vcproj │ │ │ └── Release │ │ │ │ └── .cvsignore │ │ │ ├── Iex │ │ │ ├── Debug │ │ │ │ └── .cvsignore │ │ │ ├── Iex.vcproj │ │ │ └── Release │ │ │ │ └── .cvsignore │ │ │ ├── IexTest │ │ │ ├── Debug │ │ │ │ └── .cvsignore │ │ │ ├── IexTest.vcproj │ │ │ └── Release │ │ │ │ └── .cvsignore │ │ │ ├── IlmBase.sln │ │ │ ├── IlmThread │ │ │ ├── Debug │ │ │ │ └── .cvsignore │ │ │ ├── IlmThread.vcproj │ │ │ └── Release │ │ │ │ └── .cvsignore │ │ │ ├── Imath │ │ │ ├── Debug │ │ │ │ └── .cvsignore │ │ │ ├── Imath.vcproj │ │ │ └── Release │ │ │ │ └── .cvsignore │ │ │ ├── ImathTest │ │ │ ├── Debug │ │ │ │ └── .cvsignore │ │ │ ├── ImathTest.vcproj │ │ │ └── Release │ │ │ │ └── .cvsignore │ │ │ ├── createDLL │ │ │ ├── Debug │ │ │ │ └── .cvsignore │ │ │ ├── Release │ │ │ │ └── .cvsignore │ │ │ └── createDLL.vcproj │ │ │ ├── debug │ │ │ └── .cvsignore │ │ │ └── release │ │ │ └── .cvsignore │ │ └── vc8 │ │ └── IlmBase │ │ ├── Half │ │ ├── Debug │ │ │ └── .cvsignore │ │ ├── Half.vcproj │ │ └── Release │ │ │ └── .cvsignore │ │ ├── HalfTest │ │ ├── Debug │ │ │ └── .cvsignore │ │ ├── HalfTest.vcproj │ │ └── Release │ │ │ └── .cvsignore │ │ ├── Iex │ │ ├── Debug │ │ │ └── .cvsignore │ │ ├── Iex.vcproj │ │ └── Release │ │ │ └── .cvsignore │ │ ├── IexTest │ │ ├── Debug │ │ │ └── .cvsignore │ │ ├── IexTest.vcproj │ │ └── Release │ │ │ └── .cvsignore │ │ ├── IlmBase.sln │ │ ├── IlmThread │ │ ├── Debug │ │ │ └── .cvsignore │ │ ├── IlmThread.vcproj │ │ └── Release │ │ │ └── .cvsignore │ │ ├── Imath │ │ ├── Debug │ │ │ └── .cvsignore │ │ ├── Imath.vcproj │ │ └── Release │ │ │ └── .cvsignore │ │ ├── ImathTest │ │ ├── Debug │ │ │ └── .cvsignore │ │ ├── ImathTest.vcproj │ │ └── Release │ │ │ └── .cvsignore │ │ ├── createDLL │ │ ├── Debug │ │ │ └── .cvsignore │ │ ├── Release │ │ │ └── .cvsignore │ │ └── createDLL.vcproj │ │ ├── debug │ │ └── .cvsignore │ │ └── release │ │ └── .cvsignore └── zlib-1.2.5 │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── LICENSE.txt │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── amiga │ ├── Makefile.pup │ └── Makefile.sas │ ├── compress.c │ ├── configure │ ├── contrib │ ├── README.contrib │ ├── ada │ │ ├── buffer_demo.adb │ │ ├── mtest.adb │ │ ├── read.adb │ │ ├── readme.txt │ │ ├── test.adb │ │ ├── zlib-streams.adb │ │ ├── zlib-streams.ads │ │ ├── zlib-thin.adb │ │ ├── zlib-thin.ads │ │ ├── zlib.adb │ │ ├── zlib.ads │ │ └── zlib.gpr │ ├── amd64 │ │ └── amd64-match.S │ ├── asm686 │ │ ├── README.686 │ │ └── match.S │ ├── blast │ │ ├── Makefile │ │ ├── README │ │ ├── blast.c │ │ ├── blast.h │ │ ├── test.pk │ │ └── test.txt │ ├── delphi │ │ ├── ZLib.pas │ │ ├── ZLibConst.pas │ │ ├── readme.txt │ │ └── zlibd32.mak │ ├── dotzlib │ │ ├── DotZLib.build │ │ ├── DotZLib.chm │ │ ├── DotZLib.sln │ │ ├── DotZLib │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ChecksumImpl.cs │ │ │ ├── CircularBuffer.cs │ │ │ ├── CodecBase.cs │ │ │ ├── Deflater.cs │ │ │ ├── DotZLib.cs │ │ │ ├── DotZLib.csproj │ │ │ ├── GZipStream.cs │ │ │ ├── Inflater.cs │ │ │ └── UnitTests.cs │ │ ├── LICENSE_1_0.txt │ │ └── readme.txt │ ├── gcc_gvmat64 │ │ └── gvmat64.S │ ├── infback9 │ │ ├── README │ │ ├── infback9.c │ │ ├── infback9.h │ │ ├── inffix9.h │ │ ├── inflate9.h │ │ ├── inftree9.c │ │ └── inftree9.h │ ├── inflate86 │ │ ├── inffas86.c │ │ └── inffast.S │ ├── iostream │ │ ├── test.cpp │ │ ├── zfstream.cpp │ │ └── zfstream.h │ ├── iostream2 │ │ ├── zstream.h │ │ └── zstream_test.cpp │ ├── iostream3 │ │ ├── README │ │ ├── TODO │ │ ├── test.cc │ │ ├── zfstream.cc │ │ └── zfstream.h │ ├── masmx64 │ │ ├── bld_ml64.bat │ │ ├── gvmat64.asm │ │ ├── inffas8664.c │ │ ├── inffasx64.asm │ │ └── readme.txt │ ├── masmx86 │ │ ├── bld_ml32.bat │ │ ├── inffas32.asm │ │ ├── match686.asm │ │ └── readme.txt │ ├── minizip │ │ ├── Makefile │ │ ├── MiniZip64_Changes.txt │ │ ├── MiniZip64_info.txt │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── make_vms.com │ │ ├── miniunz.c │ │ ├── minizip.c │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── pascal │ │ ├── example.pas │ │ ├── readme.txt │ │ ├── zlibd32.mak │ │ └── zlibpas.pas │ ├── puff │ │ ├── Makefile │ │ ├── README │ │ ├── puff.c │ │ ├── puff.h │ │ └── zeros.raw │ ├── testzlib │ │ ├── testzlib.c │ │ └── testzlib.txt │ ├── untgz │ │ ├── Makefile │ │ ├── Makefile.msc │ │ └── untgz.c │ └── vstudio │ │ ├── readme.txt │ │ ├── vc10 │ │ ├── miniunz.vcxproj │ │ ├── miniunz.vcxproj.filters │ │ ├── miniunz.vcxproj.user │ │ ├── minizip.vcxproj │ │ ├── minizip.vcxproj.filters │ │ ├── minizip.vcxproj.user │ │ ├── testzlib.vcxproj │ │ ├── testzlib.vcxproj.filters │ │ ├── testzlib.vcxproj.user │ │ ├── testzlibdll.vcxproj │ │ ├── testzlibdll.vcxproj.filters │ │ ├── testzlibdll.vcxproj.user │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibstat.vcxproj.filters │ │ ├── zlibstat.vcxproj.user │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ ├── zlibvc.vcxproj │ │ ├── zlibvc.vcxproj.filters │ │ └── zlibvc.vcxproj.user │ │ └── vc9 │ │ ├── miniunz.vcproj │ │ ├── minizip.vcproj │ │ ├── testzlib.vcproj │ │ ├── testzlibdll.vcproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── doc │ ├── algorithm.txt │ ├── rfc1950.txt │ ├── rfc1951.txt │ ├── rfc1952.txt │ └── txtvsbin.txt │ ├── example.c │ ├── examples │ ├── README.examples │ ├── enough.c │ ├── fitblk.c │ ├── gun.c │ ├── gzappend.c │ ├── gzjoin.c │ ├── gzlog.c │ ├── gzlog.h │ ├── zlib_how.html │ ├── zpipe.c │ └── zran.c │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── minigzip.c │ ├── msdos │ ├── Makefile.bor │ ├── Makefile.dj2 │ ├── Makefile.emx │ ├── Makefile.msc │ └── Makefile.tc │ ├── nintendods │ ├── Makefile │ └── README │ ├── old │ ├── Makefile.riscos │ ├── README │ ├── as400 │ │ ├── bndsrc │ │ ├── compile.clp │ │ ├── readme.txt │ │ └── zlib.inc │ ├── descrip.mms │ ├── os2 │ │ ├── Makefile.os2 │ │ └── zlib.def │ ├── visual-basic.txt │ └── visualc6 │ │ ├── README.txt │ │ ├── example.dsp │ │ ├── minigzip.dsp │ │ ├── zlib.dsp │ │ └── zlib.dsw │ ├── qnx │ └── package.qpg │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── watcom │ ├── watcom_f.mak │ └── watcom_l.mak │ ├── win32 │ ├── DLL_FAQ.txt │ ├── Makefile.bor │ ├── Makefile.emx │ ├── Makefile.gcc │ ├── Makefile.msc │ ├── README-WIN32.txt │ ├── VisualC.txt │ ├── zlib.def │ └── zlib1.rc │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h ├── Softimage ├── 2012 │ └── CMakeLists.txt ├── 2015 │ └── CMakeLists.txt ├── .gitattributes ├── .gitignore ├── 2014SP2 │ └── CMakeLists.txt ├── AlembicArchiveStorage.cpp ├── AlembicArchiveStorage.h ├── AlembicCamera.cpp ├── AlembicCamera.h ├── AlembicCurves.cpp ├── AlembicCurves.h ├── AlembicCustomAttributesEx.cpp ├── AlembicCustomAttributesEx.h ├── AlembicExport.cpp ├── AlembicImport.cpp ├── AlembicImport.h ├── AlembicIntermediatePolymeshXSI.cpp ├── AlembicIntermediatePolymeshXSI.h ├── AlembicLicensing.cpp ├── AlembicLicensing.h ├── AlembicMetaData.cpp ├── AlembicMetaData.h ├── AlembicModel.cpp ├── AlembicModel.h ├── AlembicNurbs.cpp ├── AlembicNurbs.h ├── AlembicObject.cpp ├── AlembicObject.h ├── AlembicPathManager.cpp ├── AlembicPoints.cpp ├── AlembicPoints.h ├── AlembicPolyMsh.cpp ├── AlembicPolyMsh.h ├── AlembicPropertyNodes.cpp ├── AlembicPropertyNodes.h ├── AlembicStandin.cpp ├── AlembicSubD.cpp ├── AlembicSubD.h ├── AlembicTimeControl.cpp ├── AlembicWriteJob.cpp ├── AlembicWriteJob.h ├── AlembicXform.cpp ├── AlembicXform.h ├── CMakeLists.txt ├── ExocortexServicesProxy.h ├── README.md ├── SoftimageAlembic.versionScript ├── Utility.h ├── Workgroup │ └── Addons │ │ └── ExocortexAlembic │ │ ├── Application │ │ └── Plugins │ │ │ └── ExocortexAlembicSoftimage_UI.py │ │ └── Data │ │ └── Compounds │ │ ├── ABC Define Color Attribute.1.1.xsicompound │ │ ├── ABC Extend BBox.1.1.xsicompound │ │ ├── ABC Instance Shapes.1.1.xsicompound │ │ ├── ABC Instance Shapes.1.2.xsicompound │ │ ├── ABC Load Curves.1.1.xsicompound │ │ ├── ABC Load Curves.1.2.xsicompound │ │ ├── ABC Load Curves.1.3.xsicompound │ │ ├── ABC Load Curves.1.4.xsicompound │ │ ├── ABC Load Curves.1.5.xsicompound │ │ ├── ABC Load Points.1.1.xsicompound │ │ ├── ABC Load Points.1.2.xsicompound │ │ ├── ABC Load Points.1.3.xsicompound │ │ ├── ABC Load Points.1.4.xsicompound │ │ ├── ABC Load Points.1.5.xsicompound │ │ ├── ABC Load Points.1.6.xsicompound │ │ ├── ABC Load Points.1.7.xsicompound │ │ ├── ABC Load PolyMesh.1.1.xsicompound │ │ ├── ABC Split Instance Model.1.1.xsicompound │ │ ├── Compute BBox onto Cube.1.1.xsicompound │ │ ├── alembic_calculate_time.1.1.xsicompound │ │ ├── alembic_calculate_time.xsicompound │ │ ├── alembic_float_per_point.1.1.xsicompound │ │ ├── alembic_float_per_point.xsicompound │ │ ├── alembic_int_per_point.xsicompound │ │ ├── alembic_set_export_attribute_names.xsicompound │ │ ├── alembic_vec2f_per_sample.1.1.xsicompound │ │ ├── alembic_vec2f_per_sample.xsicompound │ │ ├── alembic_vec3f_per_point.1.1.xsicompound │ │ ├── alembic_vec3f_per_point.xsicompound │ │ ├── alembic_vec4f_per_point.1.1.xsicompound │ │ └── alembic_vec4f_per_point.xsicompound ├── alembic.cpp ├── arnoldHelpers.cpp ├── arnoldHelpers.h ├── debugHeavyLoadTest.cpp ├── sceneGraph.cpp ├── sceneGraph.h ├── stdafx.cpp ├── stdafx.h └── utility.cpp └── _build ├── build-UnixDebug.sh ├── build-UnixRelease.sh ├── build-vs2008_x64.bat ├── build-vs2010_x64.bat └── build-vs2012_x64.bat /.gitattributes: -------------------------------------------------------------------------------- 1 | # convert end of lines into windows type! 2 | * text eol=crlf 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/.gitignore -------------------------------------------------------------------------------- /3DSMax/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/.gitignore -------------------------------------------------------------------------------- /3DSMax/2010/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/2010/CMakeLists.txt -------------------------------------------------------------------------------- /3DSMax/2011/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/2011/CMakeLists.txt -------------------------------------------------------------------------------- /3DSMax/2012/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/2012/CMakeLists.txt -------------------------------------------------------------------------------- /3DSMax/2013/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/2013/CMakeLists.txt -------------------------------------------------------------------------------- /3DSMax/2014/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/2014/CMakeLists.txt -------------------------------------------------------------------------------- /3DSMax/2015/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/2015/CMakeLists.txt -------------------------------------------------------------------------------- /3DSMax/2016/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/2016/CMakeLists.txt -------------------------------------------------------------------------------- /3DSMax/2017/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/2017/CMakeLists.txt -------------------------------------------------------------------------------- /3DSMax/Alembic.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/Alembic.aps -------------------------------------------------------------------------------- /3DSMax/Alembic.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/Alembic.rc -------------------------------------------------------------------------------- /3DSMax/AlembicArchiveStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicArchiveStorage.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicArchiveStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicArchiveStorage.h -------------------------------------------------------------------------------- /3DSMax/AlembicCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicCamera.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicCamera.h -------------------------------------------------------------------------------- /3DSMax/AlembicCameraModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicCameraModifier.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicCameraModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicCameraModifier.h -------------------------------------------------------------------------------- /3DSMax/AlembicCameraUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicCameraUtilities.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicCameraUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicCameraUtilities.h -------------------------------------------------------------------------------- /3DSMax/AlembicCurves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicCurves.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicCurves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicCurves.h -------------------------------------------------------------------------------- /3DSMax/AlembicDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicDefinitions.h -------------------------------------------------------------------------------- /3DSMax/AlembicExport.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicExport.aps -------------------------------------------------------------------------------- /3DSMax/AlembicFloatController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicFloatController.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicFloatController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicFloatController.h -------------------------------------------------------------------------------- /3DSMax/AlembicIntermediatePolyMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicIntermediatePolyMesh.h -------------------------------------------------------------------------------- /3DSMax/AlembicLicensing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicLicensing.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicLicensing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicLicensing.h -------------------------------------------------------------------------------- /3DSMax/AlembicLightUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicLightUtilities.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicLightUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicLightUtilities.h -------------------------------------------------------------------------------- /3DSMax/AlembicMAXScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMAXScript.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicMAXScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMAXScript.h -------------------------------------------------------------------------------- /3DSMax/AlembicMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMax.h -------------------------------------------------------------------------------- /3DSMax/AlembicMeshGeomModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMeshGeomModifier.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicMeshGeomModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMeshGeomModifier.h -------------------------------------------------------------------------------- /3DSMax/AlembicMeshNormalsModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMeshNormalsModifier.h -------------------------------------------------------------------------------- /3DSMax/AlembicMeshTopoModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMeshTopoModifier.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicMeshTopoModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMeshTopoModifier.h -------------------------------------------------------------------------------- /3DSMax/AlembicMeshUVWModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMeshUVWModifier.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicMeshUVWModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMeshUVWModifier.h -------------------------------------------------------------------------------- /3DSMax/AlembicMeshUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMeshUtilities.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicMeshUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMeshUtilities.h -------------------------------------------------------------------------------- /3DSMax/AlembicMetadataUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMetadataUtils.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicMetadataUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicMetadataUtils.h -------------------------------------------------------------------------------- /3DSMax/AlembicNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicNames.h -------------------------------------------------------------------------------- /3DSMax/AlembicNurbsModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicNurbsModifier.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicNurbsModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicNurbsModifier.h -------------------------------------------------------------------------------- /3DSMax/AlembicNurbsUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicNurbsUtilities.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicNurbsUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicNurbsUtilities.h -------------------------------------------------------------------------------- /3DSMax/AlembicObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicObject.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicObject.h -------------------------------------------------------------------------------- /3DSMax/AlembicParticles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicParticles.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicParticles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicParticles.h -------------------------------------------------------------------------------- /3DSMax/AlembicPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicPoints.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicPoints.h -------------------------------------------------------------------------------- /3DSMax/AlembicPointsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicPointsUtils.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicPointsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicPointsUtils.h -------------------------------------------------------------------------------- /3DSMax/AlembicPolyMsh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicPolyMsh.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicPolyMsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicPolyMsh.h -------------------------------------------------------------------------------- /3DSMax/AlembicPropertyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicPropertyUtils.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicPropertyUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicPropertyUtils.h -------------------------------------------------------------------------------- /3DSMax/AlembicRecursiveImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicRecursiveImporter.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicRecursiveImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicRecursiveImporter.h -------------------------------------------------------------------------------- /3DSMax/AlembicSplineGeomModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicSplineGeomModifier.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicSplineGeomModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicSplineGeomModifier.h -------------------------------------------------------------------------------- /3DSMax/AlembicSplineTopoModifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicSplineTopoModifier.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicSplineTopoModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicSplineTopoModifier.h -------------------------------------------------------------------------------- /3DSMax/AlembicSplineUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicSplineUtilities.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicSplineUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicSplineUtilities.h -------------------------------------------------------------------------------- /3DSMax/AlembicVisCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicVisCtrl.h -------------------------------------------------------------------------------- /3DSMax/AlembicVisibilityController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicVisibilityController.h -------------------------------------------------------------------------------- /3DSMax/AlembicWriteJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicWriteJob.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicWriteJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicWriteJob.h -------------------------------------------------------------------------------- /3DSMax/AlembicXform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicXform.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicXform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicXform.h -------------------------------------------------------------------------------- /3DSMax/AlembicXformController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicXformController.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicXformController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicXformController.h -------------------------------------------------------------------------------- /3DSMax/AlembicXformUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicXformUtilities.cpp -------------------------------------------------------------------------------- /3DSMax/AlembicXformUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/AlembicXformUtilities.h -------------------------------------------------------------------------------- /3DSMax/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/CMakeLists.txt -------------------------------------------------------------------------------- /3DSMax/DLLEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/DLLEntry.cpp -------------------------------------------------------------------------------- /3DSMax/EmptyPolyLineObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/EmptyPolyLineObject.cpp -------------------------------------------------------------------------------- /3DSMax/EmptyPolyLineObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/EmptyPolyLineObject.h -------------------------------------------------------------------------------- /3DSMax/EmptySplineObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/EmptySplineObject.cpp -------------------------------------------------------------------------------- /3DSMax/EmptySplineObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/EmptySplineObject.h -------------------------------------------------------------------------------- /3DSMax/MaxSceneTimeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/MaxSceneTimeManager.cpp -------------------------------------------------------------------------------- /3DSMax/MaxSceneTimeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/MaxSceneTimeManager.h -------------------------------------------------------------------------------- /3DSMax/ObjectList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/ObjectList.cpp -------------------------------------------------------------------------------- /3DSMax/ObjectList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/ObjectList.h -------------------------------------------------------------------------------- /3DSMax/SceneEnumProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/SceneEnumProc.cpp -------------------------------------------------------------------------------- /3DSMax/SceneEnumProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/SceneEnumProc.h -------------------------------------------------------------------------------- /3DSMax/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/Utility.h -------------------------------------------------------------------------------- /3DSMax/alembic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/alembic.cpp -------------------------------------------------------------------------------- /3DSMax/alembic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/alembic.h -------------------------------------------------------------------------------- /3DSMax/alembicExp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/alembicExp.def -------------------------------------------------------------------------------- /3DSMax/hashInstanceTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/hashInstanceTable.cpp -------------------------------------------------------------------------------- /3DSMax/hashInstanceTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/hashInstanceTable.h -------------------------------------------------------------------------------- /3DSMax/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/resource.h -------------------------------------------------------------------------------- /3DSMax/sceneGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/sceneGraph.cpp -------------------------------------------------------------------------------- /3DSMax/sceneGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/sceneGraph.h -------------------------------------------------------------------------------- /3DSMax/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /3DSMax/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/stdafx.h -------------------------------------------------------------------------------- /3DSMax/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/3DSMax/utility.cpp -------------------------------------------------------------------------------- /Arnold/.gitattributes: -------------------------------------------------------------------------------- 1 | # convert end of lines into windows type! 2 | * text eol=lf 3 | -------------------------------------------------------------------------------- /Arnold/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /Arnold/3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/3/CMakeLists.txt -------------------------------------------------------------------------------- /Arnold/4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/4/CMakeLists.txt -------------------------------------------------------------------------------- /Arnold/AlembicLicensing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/AlembicLicensing.cpp -------------------------------------------------------------------------------- /Arnold/AlembicLicensing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/AlembicLicensing.h -------------------------------------------------------------------------------- /Arnold/ArnoldAlembic.versionScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/ArnoldAlembic.versionScript -------------------------------------------------------------------------------- /Arnold/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/CMakeLists.txt -------------------------------------------------------------------------------- /Arnold/ExocortexServicesProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/ExocortexServicesProxy.h -------------------------------------------------------------------------------- /Arnold/New shortcut.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/New shortcut.lnk -------------------------------------------------------------------------------- /Arnold/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/common.cpp -------------------------------------------------------------------------------- /Arnold/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/common.h -------------------------------------------------------------------------------- /Arnold/curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/curves.cpp -------------------------------------------------------------------------------- /Arnold/curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/curves.h -------------------------------------------------------------------------------- /Arnold/dataUniqueness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/dataUniqueness.cpp -------------------------------------------------------------------------------- /Arnold/dataUniqueness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/dataUniqueness.h -------------------------------------------------------------------------------- /Arnold/dso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/dso.cpp -------------------------------------------------------------------------------- /Arnold/instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/instance.cpp -------------------------------------------------------------------------------- /Arnold/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/instance.h -------------------------------------------------------------------------------- /Arnold/nurbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/nurbs.cpp -------------------------------------------------------------------------------- /Arnold/nurbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/nurbs.h -------------------------------------------------------------------------------- /Arnold/points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/points.cpp -------------------------------------------------------------------------------- /Arnold/points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/points.h -------------------------------------------------------------------------------- /Arnold/polyMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/polyMesh.cpp -------------------------------------------------------------------------------- /Arnold/polyMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/polyMesh.h -------------------------------------------------------------------------------- /Arnold/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /Arnold/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/stdafx.h -------------------------------------------------------------------------------- /Arnold/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/utility.cpp -------------------------------------------------------------------------------- /Arnold/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Arnold/utility.h -------------------------------------------------------------------------------- /BUILDING_BOOST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/BUILDING_BOOST.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ExocortexCMakeShared.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/ExocortexCMakeShared.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Maya/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/.gitattributes -------------------------------------------------------------------------------- /Maya/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /Maya/2011/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2011/CMakeLists.txt -------------------------------------------------------------------------------- /Maya/2011/MayaAlembic.versionScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2011/MayaAlembic.versionScript -------------------------------------------------------------------------------- /Maya/2012/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2012/CMakeLists.txt -------------------------------------------------------------------------------- /Maya/2012/MayaAlembic.versionScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2012/MayaAlembic.versionScript -------------------------------------------------------------------------------- /Maya/2013.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2013.5/CMakeLists.txt -------------------------------------------------------------------------------- /Maya/2013/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2013/CMakeLists.txt -------------------------------------------------------------------------------- /Maya/2013/MayaAlembic.versionScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2013/MayaAlembic.versionScript -------------------------------------------------------------------------------- /Maya/2014/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2014/CMakeLists.txt -------------------------------------------------------------------------------- /Maya/2014/MayaAlembic.versionScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2014/MayaAlembic.versionScript -------------------------------------------------------------------------------- /Maya/2015/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2015/CMakeLists.txt -------------------------------------------------------------------------------- /Maya/2015/MayaAlembic.versionScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2015/MayaAlembic.versionScript -------------------------------------------------------------------------------- /Maya/2016.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2016.5/CMakeLists.txt -------------------------------------------------------------------------------- /Maya/2016/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2016/CMakeLists.txt -------------------------------------------------------------------------------- /Maya/2016/MayaAlembic.versionScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2016/MayaAlembic.versionScript -------------------------------------------------------------------------------- /Maya/2017/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2017/CMakeLists.txt -------------------------------------------------------------------------------- /Maya/2017/MayaAlembic.versionScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/2017/MayaAlembic.versionScript -------------------------------------------------------------------------------- /Maya/AlembicArchiveStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicArchiveStorage.cpp -------------------------------------------------------------------------------- /Maya/AlembicArchiveStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicArchiveStorage.h -------------------------------------------------------------------------------- /Maya/AlembicCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicCamera.cpp -------------------------------------------------------------------------------- /Maya/AlembicCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicCamera.h -------------------------------------------------------------------------------- /Maya/AlembicCurves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicCurves.cpp -------------------------------------------------------------------------------- /Maya/AlembicCurves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicCurves.h -------------------------------------------------------------------------------- /Maya/AlembicFileNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicFileNode.cpp -------------------------------------------------------------------------------- /Maya/AlembicFileNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicFileNode.h -------------------------------------------------------------------------------- /Maya/AlembicHair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicHair.cpp -------------------------------------------------------------------------------- /Maya/AlembicHair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicHair.h -------------------------------------------------------------------------------- /Maya/AlembicImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicImport.cpp -------------------------------------------------------------------------------- /Maya/AlembicImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicImport.h -------------------------------------------------------------------------------- /Maya/AlembicLicensing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicLicensing.cpp -------------------------------------------------------------------------------- /Maya/AlembicLicensing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicLicensing.h -------------------------------------------------------------------------------- /Maya/AlembicObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicObject.cpp -------------------------------------------------------------------------------- /Maya/AlembicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicObject.h -------------------------------------------------------------------------------- /Maya/AlembicPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicPoints.cpp -------------------------------------------------------------------------------- /Maya/AlembicPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicPoints.h -------------------------------------------------------------------------------- /Maya/AlembicPolyMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicPolyMesh.cpp -------------------------------------------------------------------------------- /Maya/AlembicPolyMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicPolyMesh.h -------------------------------------------------------------------------------- /Maya/AlembicSubD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicSubD.cpp -------------------------------------------------------------------------------- /Maya/AlembicSubD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicSubD.h -------------------------------------------------------------------------------- /Maya/AlembicTimeControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicTimeControl.cpp -------------------------------------------------------------------------------- /Maya/AlembicTimeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicTimeControl.h -------------------------------------------------------------------------------- /Maya/AlembicValidateNameCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicValidateNameCmd.cpp -------------------------------------------------------------------------------- /Maya/AlembicValidateNameCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicValidateNameCmd.h -------------------------------------------------------------------------------- /Maya/AlembicWriteJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicWriteJob.cpp -------------------------------------------------------------------------------- /Maya/AlembicWriteJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicWriteJob.h -------------------------------------------------------------------------------- /Maya/AlembicXform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicXform.cpp -------------------------------------------------------------------------------- /Maya/AlembicXform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AlembicXform.h -------------------------------------------------------------------------------- /Maya/AttributesReading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AttributesReading.cpp -------------------------------------------------------------------------------- /Maya/AttributesReading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AttributesReading.h -------------------------------------------------------------------------------- /Maya/AttributesWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AttributesWriter.cpp -------------------------------------------------------------------------------- /Maya/AttributesWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/AttributesWriter.h -------------------------------------------------------------------------------- /Maya/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/CMakeLists.txt -------------------------------------------------------------------------------- /Maya/ExocortexServicesProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/ExocortexServicesProxy.h -------------------------------------------------------------------------------- /Maya/MEL/ExocortexAlembic/_attach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/MEL/ExocortexAlembic/_attach.py -------------------------------------------------------------------------------- /Maya/MEL/ExocortexAlembic/_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/MEL/ExocortexAlembic/_export.py -------------------------------------------------------------------------------- /Maya/MEL/ExocortexAlembic/_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/MEL/ExocortexAlembic/_import.py -------------------------------------------------------------------------------- /Maya/MEL/assignShader.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/MEL/assignShader.mel -------------------------------------------------------------------------------- /Maya/MEL/attach.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/MEL/attach.mel -------------------------------------------------------------------------------- /Maya/MEL/export.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/MEL/export.mel -------------------------------------------------------------------------------- /Maya/MEL/import.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/MEL/import.mel -------------------------------------------------------------------------------- /Maya/MEL/menu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/MEL/menu.mel -------------------------------------------------------------------------------- /Maya/MayaUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/MayaUtility.cpp -------------------------------------------------------------------------------- /Maya/MayaUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/MayaUtility.h -------------------------------------------------------------------------------- /Maya/MetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/MetaData.h -------------------------------------------------------------------------------- /Maya/UI/ExocortexAlembicAttach.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/UI/ExocortexAlembicAttach.ui -------------------------------------------------------------------------------- /Maya/UI/ExocortexAlembicExport.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/UI/ExocortexAlembicExport.ui -------------------------------------------------------------------------------- /Maya/UI/ExocortexAlembicImport.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/UI/ExocortexAlembicImport.ui -------------------------------------------------------------------------------- /Maya/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/Utility.h -------------------------------------------------------------------------------- /Maya/alembic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/alembic.cpp -------------------------------------------------------------------------------- /Maya/metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/metadata.cpp -------------------------------------------------------------------------------- /Maya/sceneGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/sceneGraph.cpp -------------------------------------------------------------------------------- /Maya/sceneGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/sceneGraph.h -------------------------------------------------------------------------------- /Maya/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Maya/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/stdafx.h -------------------------------------------------------------------------------- /Maya/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Maya/utility.cpp -------------------------------------------------------------------------------- /Python/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/.gitattributes -------------------------------------------------------------------------------- /Python/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.abc 3 | -------------------------------------------------------------------------------- /Python/2.5.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/2.5.2/CMakeLists.txt -------------------------------------------------------------------------------- /Python/2.6.7/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/2.6.7/CMakeLists.txt -------------------------------------------------------------------------------- /Python/2.7.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/2.7.2/CMakeLists.txt -------------------------------------------------------------------------------- /Python/AlembicLicensing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/AlembicLicensing.cpp -------------------------------------------------------------------------------- /Python/AlembicLicensing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/AlembicLicensing.h -------------------------------------------------------------------------------- /Python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/CMakeLists.txt -------------------------------------------------------------------------------- /Python/ExocortexServicesProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/ExocortexServicesProxy.h -------------------------------------------------------------------------------- /Python/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/extension.cpp -------------------------------------------------------------------------------- /Python/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/extension.h -------------------------------------------------------------------------------- /Python/iarchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/iarchive.cpp -------------------------------------------------------------------------------- /Python/iarchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/iarchive.h -------------------------------------------------------------------------------- /Python/icompoundproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/icompoundproperty.cpp -------------------------------------------------------------------------------- /Python/icompoundproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/icompoundproperty.h -------------------------------------------------------------------------------- /Python/iobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/iobject.cpp -------------------------------------------------------------------------------- /Python/iobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/iobject.h -------------------------------------------------------------------------------- /Python/iproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/iproperty.cpp -------------------------------------------------------------------------------- /Python/iproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/iproperty.h -------------------------------------------------------------------------------- /Python/ixformproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/ixformproperty.cpp -------------------------------------------------------------------------------- /Python/ixformproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/ixformproperty.h -------------------------------------------------------------------------------- /Python/oarchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/oarchive.cpp -------------------------------------------------------------------------------- /Python/oarchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/oarchive.h -------------------------------------------------------------------------------- /Python/ocompoundproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/ocompoundproperty.cpp -------------------------------------------------------------------------------- /Python/ocompoundproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/ocompoundproperty.h -------------------------------------------------------------------------------- /Python/oobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/oobject.cpp -------------------------------------------------------------------------------- /Python/oobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/oobject.h -------------------------------------------------------------------------------- /Python/oproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/oproperty.cpp -------------------------------------------------------------------------------- /Python/oproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/oproperty.h -------------------------------------------------------------------------------- /Python/oxformproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/oxformproperty.cpp -------------------------------------------------------------------------------- /Python/oxformproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/oxformproperty.h -------------------------------------------------------------------------------- /Python/references/AbcEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/references/AbcEnums.cpp -------------------------------------------------------------------------------- /Python/references/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/references/CMakeLists.txt -------------------------------------------------------------------------------- /Python/references/IArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/references/IArchive.cpp -------------------------------------------------------------------------------- /Python/references/IObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/references/IObject.cpp -------------------------------------------------------------------------------- /Python/references/SampleSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/references/SampleSelector.cpp -------------------------------------------------------------------------------- /Python/references/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/references/main.cpp -------------------------------------------------------------------------------- /Python/samples/OBJ2ABC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/samples/OBJ2ABC.py -------------------------------------------------------------------------------- /Python/samples/cmpABCs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/samples/cmpABCs.py -------------------------------------------------------------------------------- /Python/samples/concatABCs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/samples/concatABCs.py -------------------------------------------------------------------------------- /Python/samples/copyABC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/samples/copyABC.py -------------------------------------------------------------------------------- /Python/samples/filterABC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/samples/filterABC.py -------------------------------------------------------------------------------- /Python/samples/mergeABCs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/samples/mergeABCs.py -------------------------------------------------------------------------------- /Python/samples/overwriteProp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/samples/overwriteProp.py -------------------------------------------------------------------------------- /Python/samples/renameABC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/samples/renameABC.py -------------------------------------------------------------------------------- /Python/samples/retimeABC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/samples/retimeABC.py -------------------------------------------------------------------------------- /Python/samples/viewABC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/samples/viewABC.py -------------------------------------------------------------------------------- /Python/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /Python/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/stdafx.h -------------------------------------------------------------------------------- /Python/timesampling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/timesampling.cpp -------------------------------------------------------------------------------- /Python/timesampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Python/timesampling.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/README.md -------------------------------------------------------------------------------- /Shared/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/.gitattributes -------------------------------------------------------------------------------- /Shared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/.gitignore -------------------------------------------------------------------------------- /Shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CMakeLists.txt -------------------------------------------------------------------------------- /Shared/CommonUtils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CMakeLists.txt -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonAbcCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonAbcCache.h -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonAlembic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonAlembic.h -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonImport.cpp -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonImport.h -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonLicensing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonLicensing.h -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonLog.h -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonOS.h -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonPBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonPBar.h -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonProfiler.h -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonRegex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonRegex.cpp -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonRegex.h -------------------------------------------------------------------------------- /Shared/CommonUtils/CommonUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/CommonUtils/CommonUtilities.h -------------------------------------------------------------------------------- /Shared/Doc/00-LicensingGuide.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://exocortex.com/documentation/licensing 3 | -------------------------------------------------------------------------------- /Shared/Doc/06-LegalNotices.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://exocortex.com/alembic/legal_notices 3 | -------------------------------------------------------------------------------- /Shared/Doc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/Doc/LICENSE.txt -------------------------------------------------------------------------------- /Shared/Doc/Tutorial01-3DSMaxThinkingParticlesToMayaAndSoftimage.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://vimeo.com/51072327 3 | -------------------------------------------------------------------------------- /Shared/Doc/Tutorial02-ExportAndImportInto3DSMax.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://vimeo.com/51079581 3 | -------------------------------------------------------------------------------- /Shared/Doc/Tutorial03-PointCachesInMaya3DSMaxAndSoftimage.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://vimeo.com/52629193 3 | -------------------------------------------------------------------------------- /Shared/Doc/Tutorial04-TransferingMultipleUVSetsFrom3DSMaxToMaya.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://vimeo.com/52019150 3 | -------------------------------------------------------------------------------- /Shared/alembic-1.5.0/AbcOpenGL/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/alembic-1.5.0/AbcOpenGL/All.h -------------------------------------------------------------------------------- /Shared/alembic-1.5.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/alembic-1.5.0/CMakeLists.txt -------------------------------------------------------------------------------- /Shared/alembic-1.5.0/FEEDBACK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/alembic-1.5.0/FEEDBACK.txt -------------------------------------------------------------------------------- /Shared/alembic-1.5.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/alembic-1.5.0/LICENSE.txt -------------------------------------------------------------------------------- /Shared/alembic-1.5.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/alembic-1.5.0/README.txt -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/ACKNOWLEDGMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/ACKNOWLEDGMENTS -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/CMakeLists.txt -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/COPYING -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/CTestConfig.cmake -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/MANIFEST -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/Makefile -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/Makefile.am -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/Makefile.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/Makefile.dist -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/Makefile.in -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/README.txt -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/aclocal.m4 -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/acsite.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/acsite.m4 -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/CMakeLists.txt -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/COPYING -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/Makefile.am -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/Makefile.in -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/src/H5Cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/src/H5Cpp.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/src/H5CppDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/src/H5CppDoc.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/src/H5File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/src/H5File.cpp -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/src/H5File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/src/H5File.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/src/H5Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/src/H5Group.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/src/H5Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/src/H5Object.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/src/h5c++.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/src/h5c++.in -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/test/dsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/test/dsets.cpp -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/test/tattr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/test/tattr.cpp -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/test/tfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/test/tfile.cpp -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/test/th5s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/test/th5s.cpp -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/c++/test/th5s.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/c++/test/th5s.h5 -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/BlankForm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/BlankForm -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/COPYING -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/apple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/apple -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/commence.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/commence.am -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/conclude.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/conclude.am -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/craynv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/craynv -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/dec-flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/dec-flags -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/examples.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/examples.am -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/freebsd -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/gnu-fflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/gnu-fflags -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/gnu-flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/gnu-flags -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/hpux11.23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/hpux11.23 -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/ibm-aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/ibm-aix -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/ibm-flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/ibm-flags -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/intel-flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/intel-flags -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/irix6.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/irix6.x -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/linux-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/linux-gnu -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/lt_vers.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/lt_vers.am -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/pgi-fflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/pgi-fflags -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/pgi-flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/pgi-flags -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/solaris2.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/solaris2.x -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/config/sv1-cray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/config/sv1-cray -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/configure -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/configure.in -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/CMakeLists.txt -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/COPYING -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/Makefile.am -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/Makefile.in -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/c++/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/c++/COPYING -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/c++/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/c++/Makefile.am -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/c++/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/c++/Makefile.in -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/fortran/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/fortran/COPYING -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/COPYING -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/H5DS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/H5DS.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/H5IM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/H5IM.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/H5LT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/H5LT.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/H5LTparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/H5LTparse.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/H5LTparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/H5LTparse.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/H5LTparse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/H5LTparse.y -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/H5PT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/H5PT.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/H5TB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/H5TB.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/Makefile.am -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/Makefile.in -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/src/hdf5_hl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/src/hdf5_hl.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/test/COPYING -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/test/dsdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/test/dsdata.txt -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/test/dslat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/test/dslat.txt -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/test/dslon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/test/dslon.txt -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/test/earth.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/test/earth.pal -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/test/h5hltest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/test/h5hltest.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/test/pal_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/test/pal_rgb.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/test/sepia.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/test/sepia.pal -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/test/test_ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/test/test_ds.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/hl/tools/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/hl/tools/COPYING -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/COPYING -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/benchpar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/benchpar.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/chunk.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/iopipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/iopipe.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/mpi-perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/mpi-perf.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/overhead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/overhead.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/perf.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/pio_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/pio_perf.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/pio_perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/pio_perf.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/sio_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/sio_perf.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/sio_perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/sio_perf.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/perform/zip_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/perform/zip_perf.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/CMakeLists.txt -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/COPYING -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5A.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5AC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5AC.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5ACpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5ACpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5ACprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5ACprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5ACpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5ACpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Abtree2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Abtree2.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Adense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Adense.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Adeprec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Adeprec.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Aint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Aint.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Apkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Apkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Aprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Aprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Apublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Apublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Atest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Atest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5B.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5B.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5B2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5B2.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5B2cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5B2cache.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5B2dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5B2dbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5B2hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5B2hdr.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5B2int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5B2int.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5B2pkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5B2pkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5B2private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5B2private.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5B2public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5B2public.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5B2stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5B2stat.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5B2test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5B2test.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Bcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Bcache.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Bdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Bdbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Bpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Bpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Bprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Bprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Bpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Bpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5C.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5CS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5CS.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5CSprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5CSprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Cpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Cpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Cprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Cprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Cpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Cpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5D.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dbtree.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dchunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dchunk.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dcompact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dcompact.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dcontig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dcontig.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ddbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ddbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ddeprec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ddeprec.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Defl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Defl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dfill.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dint.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dio.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dlayout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dlayout.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dmpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dmpio.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Doh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Doh.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dscatgath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dscatgath.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dselect.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Dtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Dtest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5E.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5E.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Edefin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Edefin.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Edeprec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Edeprec.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Einit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Einit.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Eint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Eint.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Epkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Epkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Eprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Eprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Epubgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Epubgen.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Epublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Epublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Eterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Eterm.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5F.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5F.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FD.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDcore.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDcore.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDdirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDdirect.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDdirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDdirect.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDfamily.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDfamily.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDfamily.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDfamily.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDint.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDlog.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDlog.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDmpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDmpi.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDmpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDmpi.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDmpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDmpio.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDmpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDmpio.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDmpiposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDmpiposix.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDmulti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDmulti.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDmulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDmulti.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDsec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDsec2.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDsec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDsec2.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDspace.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDstdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDstdio.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FDstdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FDstdio.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FL.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FO.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FS.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FScache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FScache.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FSdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FSdbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FSpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FSpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FSpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FSpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FSstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FSstat.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5FStest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5FStest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Faccum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Faccum.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fcwfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fcwfs.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fdbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fefc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fefc.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ffake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ffake.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fio.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fmount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fmount.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fmpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fmpi.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fquery.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fsfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fsfile.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Fsuper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Fsuper.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ftest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5G.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5G.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gbtree2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gbtree2.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gcache.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gcompact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gcompact.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gdense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gdense.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gdeprec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gdeprec.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gent.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gint.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Glink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Glink.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gloc.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gname.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gnode.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gobj.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Goh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Goh.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Groot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Groot.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gstab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gstab.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Gtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Gtest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HF.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFbtree2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFbtree2.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFcache.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFdbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFdblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFdblock.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFdtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFdtable.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFhdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFhdr.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFhuge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFhuge.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFiblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFiblock.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFiter.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFman.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFspace.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFstat.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFtest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HFtiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HFtiny.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HG.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HGcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HGcache.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HGdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HGdbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HGpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HGpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HGpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HGpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HGquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HGquery.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HL.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HLcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HLcache.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HLdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HLdbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HLint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HLint.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HLpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HLpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HLpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HLpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5HP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5HP.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5I.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5I.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ipkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ipkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Iprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Iprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ipublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ipublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Itest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Itest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5L.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5L.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Lpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Lpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Lprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Lprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Lpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Lpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5MF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5MF.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5MFaggr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5MFaggr.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5MFdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5MFdbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5MFpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5MFpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5MM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5MM.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5MMpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5MMpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5MP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5MP.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5MPpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5MPpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5MPtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5MPtest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5O.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5O.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Oainfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Oainfo.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Oalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Oalloc.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Oattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Oattr.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Obogus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Obogus.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Obtreek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Obtreek.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ocache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ocache.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ochunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ochunk.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ocont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ocont.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ocopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ocopy.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Odbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Odbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Odrvinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Odrvinfo.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Odtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Odtype.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Oefl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Oefl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ofill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ofill.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Oginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Oginfo.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Olayout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Olayout.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Olinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Olinfo.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Olink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Olink.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Omessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Omessage.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Omtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Omtime.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Oname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Oname.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Onull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Onull.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Opkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Opkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Opline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Opline.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Oprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Oprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Opublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Opublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Osdspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Osdspace.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Oshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Oshared.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Oshared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Oshared.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Oshmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Oshmesg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ostab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ostab.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Otest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Otest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ounknown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ounknown.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5P.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5P.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pacpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pacpl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pdapl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pdapl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pdcpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pdcpl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pdeprec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pdeprec.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pdxpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pdxpl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pfapl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pfapl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pfcpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pfcpl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pfmpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pfmpl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pgcpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pgcpl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pint.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Plapl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Plapl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Plcpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Plcpl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pocpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pocpl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pocpypl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pocpypl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ppkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ppkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ppublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ppublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Pstrcpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Pstrcpl.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ptest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5R.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5RC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5RC.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5RS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5RS.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Rdeprec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Rdeprec.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Rpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Rpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Rprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Rprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Rpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Rpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5S.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5S.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5SL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5SL.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5SM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5SM.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5SMbtree2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5SMbtree2.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5SMcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5SMcache.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5SMpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5SMpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5SMtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5SMtest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5ST.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5ST.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Sall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Sall.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Sdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Sdbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Shyper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Shyper.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Smpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Smpio.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Snone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Snone.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Spkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Spkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Spoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Spoint.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Sprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Sprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Spublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Spublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Sselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Sselect.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Stest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Stest.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5T.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5T.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5TS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5TS.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tarray.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tbit.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tcommit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tcommit.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tconv.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tcset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tcset.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tdbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tdeprec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tdeprec.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tenum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tenum.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tfields.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tfields.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tfixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tfixed.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tfloat.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tnative.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Toffset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Toffset.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Toh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Toh.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Topaque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Topaque.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Torder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Torder.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tpad.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tprecis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tprecis.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tstrpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tstrpad.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tvisit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tvisit.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Tvlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Tvlen.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5V.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5V.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Vprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Vprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5WB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5WB.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Z.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Zdeflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Zdeflate.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Znbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Znbit.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Zpkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Zpkg.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Zprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Zprivate.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Zpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Zpublic.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Zshuffle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Zshuffle.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Zszip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Zszip.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5Ztrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5Ztrans.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5api_adpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5api_adpt.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5checksum.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5dbg.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5detect.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5err.txt -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5overflow.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5private.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5public.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5system.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5timer.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5trace.c -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5vers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5vers.txt -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/H5version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/H5version.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/Makefile.am -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/Makefile.in -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/src/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/src/hdf5.h -------------------------------------------------------------------------------- /Shared/hdf5-1.8.9/windows/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/hdf5-1.8.9/windows/COPYING -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/AUTHORS -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/COPYING -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/ChangeLog -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/Half/eLut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/Half/eLut.h -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/Half/half.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/Half/half.cpp -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/Half/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/Half/half.h -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/HalfTest/testArithmetic.h: -------------------------------------------------------------------------------- 1 | 2 | void testArithmetic (); 3 | 4 | -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/HalfTest/testBitPatterns.h: -------------------------------------------------------------------------------- 1 | 2 | void testBitPatterns (); 3 | 4 | -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/HalfTest/testClassification.h: -------------------------------------------------------------------------------- 1 | 2 | void testClassification (); 3 | 4 | -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/HalfTest/testFunction.h: -------------------------------------------------------------------------------- 1 | 2 | void testFunction (); 3 | 4 | -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/HalfTest/testLimits.h: -------------------------------------------------------------------------------- 1 | 2 | void testLimits (); 3 | 4 | -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/HalfTest/testSize.h: -------------------------------------------------------------------------------- 1 | 2 | void testSize (); 3 | 4 | -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/Iex/Iex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/Iex/Iex.h -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/IlmBase.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/IlmBase.pc.in -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/LICENSE -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/Makefile.am -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/Makefile.in -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/NEWS: -------------------------------------------------------------------------------- 1 | Version 0.9.0: 2 | - Initial release 3 | 4 | -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/README -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/README.CVS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/README.CVS -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/README.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/README.OSX -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/README.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/README.win32 -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/aclocal.m4 -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/bootstrap -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/config.guess -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/config.sub -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/configure -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/configure.ac -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/depcomp -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/install-sh -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/ltmain.sh -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/m4/threads.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/m4/threads.m4 -------------------------------------------------------------------------------- /Shared/ilmbase-1.0.2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/ilmbase-1.0.2/missing -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/CMakeLists.txt -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/ChangeLog -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/FAQ -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/INDEX -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/LICENSE.txt -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/Makefile -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/Makefile.in -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/README -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/adler32.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/compress.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/configure -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/crc32.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/crc32.h -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/deflate.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/deflate.h -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/doc/rfc1950.txt -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/doc/rfc1951.txt -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/doc/rfc1952.txt -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/doc/txtvsbin.txt -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/example.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/examples/gun.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/examples/gzlog.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/examples/gzlog.h -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/examples/zpipe.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/examples/zran.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/gzclose.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/gzguts.h -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/gzlib.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/gzread.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/gzwrite.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/infback.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/inffast.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/inffast.h -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/inffixed.h -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/inflate.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/inflate.h -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/inftrees.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/inftrees.h -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/make_vms.com -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/minigzip.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/old/README -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/old/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/old/as400/bndsrc -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/old/descrip.mms -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/old/os2/zlib.def -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/qnx/package.qpg -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/treebuild.xml -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/trees.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/trees.h -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/uncompr.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/win32/zlib.def -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/win32/zlib1.rc -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/zconf.h.cmakein -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/zconf.h.in -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/zlib.3 -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/zlib.3.pdf -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/zlib.h -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/zlib.map -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/zlib.pc.in -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/zlib2ansi -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/zutil.c -------------------------------------------------------------------------------- /Shared/zlib-1.2.5/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Shared/zlib-1.2.5/zutil.h -------------------------------------------------------------------------------- /Softimage/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/.gitattributes -------------------------------------------------------------------------------- /Softimage/.gitignore: -------------------------------------------------------------------------------- 1 | # ignore bin files inside Workgroup 2 | bin 3 | *~ 4 | -------------------------------------------------------------------------------- /Softimage/2012/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/2012/CMakeLists.txt -------------------------------------------------------------------------------- /Softimage/2014SP2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/2014SP2/CMakeLists.txt -------------------------------------------------------------------------------- /Softimage/2015/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/2015/CMakeLists.txt -------------------------------------------------------------------------------- /Softimage/AlembicArchiveStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicArchiveStorage.h -------------------------------------------------------------------------------- /Softimage/AlembicCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicCamera.cpp -------------------------------------------------------------------------------- /Softimage/AlembicCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicCamera.h -------------------------------------------------------------------------------- /Softimage/AlembicCurves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicCurves.cpp -------------------------------------------------------------------------------- /Softimage/AlembicCurves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicCurves.h -------------------------------------------------------------------------------- /Softimage/AlembicExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicExport.cpp -------------------------------------------------------------------------------- /Softimage/AlembicImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicImport.cpp -------------------------------------------------------------------------------- /Softimage/AlembicImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicImport.h -------------------------------------------------------------------------------- /Softimage/AlembicLicensing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicLicensing.cpp -------------------------------------------------------------------------------- /Softimage/AlembicLicensing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicLicensing.h -------------------------------------------------------------------------------- /Softimage/AlembicMetaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicMetaData.cpp -------------------------------------------------------------------------------- /Softimage/AlembicMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicMetaData.h -------------------------------------------------------------------------------- /Softimage/AlembicModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicModel.cpp -------------------------------------------------------------------------------- /Softimage/AlembicModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicModel.h -------------------------------------------------------------------------------- /Softimage/AlembicNurbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicNurbs.cpp -------------------------------------------------------------------------------- /Softimage/AlembicNurbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicNurbs.h -------------------------------------------------------------------------------- /Softimage/AlembicObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicObject.cpp -------------------------------------------------------------------------------- /Softimage/AlembicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicObject.h -------------------------------------------------------------------------------- /Softimage/AlembicPathManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicPathManager.cpp -------------------------------------------------------------------------------- /Softimage/AlembicPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicPoints.cpp -------------------------------------------------------------------------------- /Softimage/AlembicPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicPoints.h -------------------------------------------------------------------------------- /Softimage/AlembicPolyMsh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicPolyMsh.cpp -------------------------------------------------------------------------------- /Softimage/AlembicPolyMsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicPolyMsh.h -------------------------------------------------------------------------------- /Softimage/AlembicPropertyNodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicPropertyNodes.cpp -------------------------------------------------------------------------------- /Softimage/AlembicPropertyNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicPropertyNodes.h -------------------------------------------------------------------------------- /Softimage/AlembicStandin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicStandin.cpp -------------------------------------------------------------------------------- /Softimage/AlembicSubD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicSubD.cpp -------------------------------------------------------------------------------- /Softimage/AlembicSubD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicSubD.h -------------------------------------------------------------------------------- /Softimage/AlembicTimeControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicTimeControl.cpp -------------------------------------------------------------------------------- /Softimage/AlembicWriteJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicWriteJob.cpp -------------------------------------------------------------------------------- /Softimage/AlembicWriteJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicWriteJob.h -------------------------------------------------------------------------------- /Softimage/AlembicXform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicXform.cpp -------------------------------------------------------------------------------- /Softimage/AlembicXform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/AlembicXform.h -------------------------------------------------------------------------------- /Softimage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/CMakeLists.txt -------------------------------------------------------------------------------- /Softimage/ExocortexServicesProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/ExocortexServicesProxy.h -------------------------------------------------------------------------------- /Softimage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/README.md -------------------------------------------------------------------------------- /Softimage/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/Utility.h -------------------------------------------------------------------------------- /Softimage/alembic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/alembic.cpp -------------------------------------------------------------------------------- /Softimage/arnoldHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/arnoldHelpers.cpp -------------------------------------------------------------------------------- /Softimage/arnoldHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/arnoldHelpers.h -------------------------------------------------------------------------------- /Softimage/debugHeavyLoadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/debugHeavyLoadTest.cpp -------------------------------------------------------------------------------- /Softimage/sceneGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/sceneGraph.cpp -------------------------------------------------------------------------------- /Softimage/sceneGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/sceneGraph.h -------------------------------------------------------------------------------- /Softimage/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Softimage/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/stdafx.h -------------------------------------------------------------------------------- /Softimage/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/Softimage/utility.cpp -------------------------------------------------------------------------------- /_build/build-UnixDebug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/_build/build-UnixDebug.sh -------------------------------------------------------------------------------- /_build/build-UnixRelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/_build/build-UnixRelease.sh -------------------------------------------------------------------------------- /_build/build-vs2008_x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/_build/build-vs2008_x64.bat -------------------------------------------------------------------------------- /_build/build-vs2010_x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/_build/build-vs2010_x64.bat -------------------------------------------------------------------------------- /_build/build-vs2012_x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exocortex/ExocortexCrate/HEAD/_build/build-vs2012_x64.bat --------------------------------------------------------------------------------