├── LICENSE ├── README.md ├── index.html ├── js ├── compiled │ └── trinity.min.js ├── gl.js ├── gui.js ├── presets.js ├── renderer.js ├── shaders.js ├── solver.js ├── thirdparty │ ├── codemirror │ │ ├── buttons.js │ │ ├── clike.js │ │ ├── codemirror.css.js │ │ ├── codemirror.js │ │ └── panel.js │ ├── gif.js │ │ ├── gif.js │ │ └── gif.worker.js │ ├── jquery-3.3.1.min.js │ ├── jquery-ui.css.js │ ├── jquery-ui.min.js │ ├── noise.js │ └── three │ │ ├── AudioObject.js │ │ ├── BlendCharacter.js │ │ ├── BlendCharacterGui.js │ │ ├── Car.js │ │ ├── Cloth.js │ │ ├── CurveExtras.js │ │ ├── Detector.js │ │ ├── ImprovedNoise.js │ │ ├── MD2Character.js │ │ ├── MD2CharacterComplex.js │ │ ├── MarchingCubes.js │ │ ├── Mirror.js │ │ ├── Ocean.js │ │ ├── Octree.js │ │ ├── PRNG.js │ │ ├── ParametricGeometries.js │ │ ├── ShaderDeferred.js │ │ ├── ShaderGodRays.js │ │ ├── ShaderSkin.js │ │ ├── ShaderTerrain.js │ │ ├── ShaderToon.js │ │ ├── SimplexNoise.js │ │ ├── SimulationRenderer.js │ │ ├── SkyShader.js │ │ ├── Sparks.js │ │ ├── TypedArrayUtils.js │ │ ├── UCSCharacter.js │ │ ├── WaterShader.js │ │ ├── cameras │ │ └── CombinedCamera.js │ │ ├── controls │ │ ├── DeviceOrientationControls.js │ │ ├── EditorControls.js │ │ ├── FirstPersonControls.js │ │ ├── FlyControls.js │ │ ├── MouseControls.js │ │ ├── OrbitControls.js │ │ ├── OrthographicTrackballControls.js │ │ ├── PointerLockControls.js │ │ ├── TrackballControls.js │ │ ├── TransformControls.js │ │ └── VRControls.js │ │ ├── crossfade │ │ ├── gui.js │ │ ├── scenes.js │ │ └── transition.js │ │ ├── curves │ │ ├── NURBSCurve.js │ │ ├── NURBSSurface.js │ │ └── NURBSUtils.js │ │ ├── effects │ │ ├── AnaglyphEffect.js │ │ ├── AsciiEffect.js │ │ ├── ParallaxBarrierEffect.js │ │ ├── StereoEffect.js │ │ └── VREffect.js │ │ ├── exporters │ │ ├── OBJExporter.js │ │ ├── STLBinaryExporter.js │ │ ├── STLExporter.js │ │ ├── SceneExporter.js │ │ └── TypedGeometryExporter.js │ │ ├── geometries │ │ ├── ConvexGeometry.js │ │ ├── DecalGeometry.js │ │ ├── hilbert2D.js │ │ └── hilbert3D.js │ │ ├── libs │ │ ├── dat.gui.min.js │ │ ├── msgpack-js.js │ │ ├── pnltri.min.js │ │ ├── require.js │ │ ├── stats.min.js │ │ ├── system.min.js │ │ └── tween.min.js │ │ ├── loaders │ │ ├── AWDLoader.js │ │ ├── AssimpJSONLoader.js │ │ ├── BabylonLoader.js │ │ ├── BinaryLoader.js │ │ ├── ColladaLoader.js │ │ ├── DDSLoader.js │ │ ├── MTLLoader.js │ │ ├── OBJLoader.js │ │ ├── OBJMTLLoader.js │ │ ├── PDBLoader.js │ │ ├── PLYLoader.js │ │ ├── PVRLoader.js │ │ ├── RGBELoader.js │ │ ├── STLLoader.js │ │ ├── SVGLoader.js │ │ ├── TGALoader.js │ │ ├── UTF8Loader.js │ │ ├── VRMLLoader.js │ │ ├── VTKLoader.js │ │ ├── ctm │ │ │ ├── CTMLoader.js │ │ │ ├── CTMWorker.js │ │ │ ├── ctm.js │ │ │ ├── license │ │ │ │ ├── OpenCTM.txt │ │ │ │ ├── js-lzma.txt │ │ │ │ └── js-openctm.txt │ │ │ └── lzma.js │ │ ├── deprecated │ │ │ └── SceneLoader.js │ │ └── gltf │ │ │ ├── glTF-parser.js │ │ │ ├── glTFAnimation.js │ │ │ ├── glTFLoader.js │ │ │ └── glTFLoaderUtils.js │ │ ├── math │ │ ├── ColorConverter.js │ │ └── Lut.js │ │ ├── modifiers │ │ ├── ExplodeModifier.js │ │ ├── SubdivisionModifier.js │ │ └── TessellateModifier.js │ │ ├── objects │ │ └── ShadowMesh.js │ │ ├── postprocessing │ │ ├── AdaptiveToneMappingPass.js │ │ ├── BloomPass.js │ │ ├── BokehPass.js │ │ ├── DotScreenPass.js │ │ ├── EffectComposer.js │ │ ├── FilmPass.js │ │ ├── GlitchPass.js │ │ ├── MaskPass.js │ │ ├── RenderPass.js │ │ ├── SavePass.js │ │ ├── ShaderPass.js │ │ └── TexturePass.js │ │ ├── renderers │ │ ├── CSS2DRenderer.js │ │ ├── CSS3DRenderer.js │ │ ├── CSS3DStereoRenderer.js │ │ ├── CanvasRenderer.js │ │ ├── Projector.js │ │ ├── RaytracingRenderer.js │ │ ├── SVGRenderer.js │ │ ├── SoftwareRenderer.js │ │ ├── WebGLDeferredRenderer.js │ │ └── plugins │ │ │ └── DepthPassPlugin.js │ │ ├── shaders │ │ ├── BasicShader.js │ │ ├── BleachBypassShader.js │ │ ├── BlendShader.js │ │ ├── BokehShader.js │ │ ├── BokehShader2.js │ │ ├── BrightnessContrastShader.js │ │ ├── ColorCorrectionShader.js │ │ ├── ColorifyShader.js │ │ ├── ConvolutionShader.js │ │ ├── CopyShader.js │ │ ├── DOFMipMapShader.js │ │ ├── DigitalGlitch.js │ │ ├── DotScreenShader.js │ │ ├── EdgeShader.js │ │ ├── EdgeShader2.js │ │ ├── FXAAShader.js │ │ ├── FilmShader.js │ │ ├── FocusShader.js │ │ ├── FresnelShader.js │ │ ├── HorizontalBlurShader.js │ │ ├── HorizontalTiltShiftShader.js │ │ ├── HueSaturationShader.js │ │ ├── KaleidoShader.js │ │ ├── LuminosityShader.js │ │ ├── MirrorShader.js │ │ ├── NormalDisplacementShader.js │ │ ├── NormalMapShader.js │ │ ├── OceanShaders.js │ │ ├── ParallaxShader.js │ │ ├── RGBShiftShader.js │ │ ├── SSAOShader.js │ │ ├── SepiaShader.js │ │ ├── TechnicolorShader.js │ │ ├── ToneMapShader.js │ │ ├── TriangleBlurShader.js │ │ ├── UnpackDepthRGBAShader.js │ │ ├── VerticalBlurShader.js │ │ ├── VerticalTiltShiftShader.js │ │ └── VignetteShader.js │ │ ├── three.js │ │ ├── three.min.js │ │ ├── utils │ │ ├── GeometryUtils.js │ │ ├── ShadowMapViewer.js │ │ └── UVsDebug.js │ │ └── wip │ │ ├── CircleTypedGeometry.js │ │ ├── GeometryEditor.js │ │ ├── IndexedTypedGeometry.js │ │ ├── PlaneTypedGeometry.js │ │ ├── ProxyGeometry.js │ │ ├── TypedGeometry.js │ │ ├── benchmark │ │ ├── BoxGeometry2.js │ │ ├── Geometry2.js │ │ ├── Geometry2Loader.js │ │ ├── Geometry3.js │ │ ├── Geometry4.js │ │ ├── Geometry5.js │ │ ├── Geometry5b.js │ │ ├── IndexedGeometry3.js │ │ ├── IndexedGeometry5.js │ │ ├── IndexedPlaneGeometry5.js │ │ ├── PlaneGeometry.js │ │ ├── PlaneGeometry2.js │ │ ├── PlaneGeometry2b.js │ │ ├── PlaneGeometry3.js │ │ ├── PlaneGeometry5.js │ │ ├── PlaneGeometry6.js │ │ ├── PlaneGeometry99.js │ │ └── TypedGeometry.js │ │ └── proxies │ │ ├── MultiColor.js │ │ ├── MultiVector3.js │ │ ├── ProxyColor.js │ │ ├── ProxyFace3.js │ │ ├── ProxyVector2.js │ │ ├── ProxyVector3.js │ │ └── ProxyVector4.js └── trinity.js ├── scripts ├── build └── closure-compiler │ └── compiler.jar ├── shaders ├── advect-fragment-shader.glsl ├── advect-vertex-shader.glsl ├── copy-fragment-shader.glsl ├── copy-vertex-shader.glsl ├── div-fragment-shader.glsl ├── div-vertex-shader.glsl ├── initial-fragment-shader.glsl ├── initial-vertex-shader.glsl ├── inject-fragment-shader.glsl ├── inject-vertex-shader.glsl ├── line-fragment-shader.glsl ├── line-vertex-shader.glsl ├── project-fragment-shader.glsl ├── project-vertex-shader.glsl ├── tonemap-fragment-shader.glsl ├── tonemap-vertex-shader.glsl ├── update-fragment-shader.glsl ├── update-vertex-shader.glsl ├── volume-fragment-shader.glsl ├── volume-vertex-shader.glsl ├── vorticity-fragment-shader.glsl └── vorticity-vertex-shader.glsl └── thumbs ├── Basic-plume.png ├── Dye-collision.png ├── Plume-sphere.png ├── Plume-walls.png ├── dust-devil.png ├── fireball.png ├── nuke-II.png ├── nuke.png └── vortex-street.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/index.html -------------------------------------------------------------------------------- /js/compiled/trinity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/compiled/trinity.min.js -------------------------------------------------------------------------------- /js/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/gl.js -------------------------------------------------------------------------------- /js/gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/gui.js -------------------------------------------------------------------------------- /js/presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/presets.js -------------------------------------------------------------------------------- /js/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/renderer.js -------------------------------------------------------------------------------- /js/shaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/shaders.js -------------------------------------------------------------------------------- /js/solver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/solver.js -------------------------------------------------------------------------------- /js/thirdparty/codemirror/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/codemirror/buttons.js -------------------------------------------------------------------------------- /js/thirdparty/codemirror/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/codemirror/clike.js -------------------------------------------------------------------------------- /js/thirdparty/codemirror/codemirror.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/codemirror/codemirror.css.js -------------------------------------------------------------------------------- /js/thirdparty/codemirror/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/codemirror/codemirror.js -------------------------------------------------------------------------------- /js/thirdparty/codemirror/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/codemirror/panel.js -------------------------------------------------------------------------------- /js/thirdparty/gif.js/gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/gif.js/gif.js -------------------------------------------------------------------------------- /js/thirdparty/gif.js/gif.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/gif.js/gif.worker.js -------------------------------------------------------------------------------- /js/thirdparty/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /js/thirdparty/jquery-ui.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/jquery-ui.css.js -------------------------------------------------------------------------------- /js/thirdparty/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/jquery-ui.min.js -------------------------------------------------------------------------------- /js/thirdparty/noise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/noise.js -------------------------------------------------------------------------------- /js/thirdparty/three/AudioObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/AudioObject.js -------------------------------------------------------------------------------- /js/thirdparty/three/BlendCharacter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/BlendCharacter.js -------------------------------------------------------------------------------- /js/thirdparty/three/BlendCharacterGui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/BlendCharacterGui.js -------------------------------------------------------------------------------- /js/thirdparty/three/Car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/Car.js -------------------------------------------------------------------------------- /js/thirdparty/three/Cloth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/Cloth.js -------------------------------------------------------------------------------- /js/thirdparty/three/CurveExtras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/CurveExtras.js -------------------------------------------------------------------------------- /js/thirdparty/three/Detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/Detector.js -------------------------------------------------------------------------------- /js/thirdparty/three/ImprovedNoise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/ImprovedNoise.js -------------------------------------------------------------------------------- /js/thirdparty/three/MD2Character.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/MD2Character.js -------------------------------------------------------------------------------- /js/thirdparty/three/MD2CharacterComplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/MD2CharacterComplex.js -------------------------------------------------------------------------------- /js/thirdparty/three/MarchingCubes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/MarchingCubes.js -------------------------------------------------------------------------------- /js/thirdparty/three/Mirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/Mirror.js -------------------------------------------------------------------------------- /js/thirdparty/three/Ocean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/Ocean.js -------------------------------------------------------------------------------- /js/thirdparty/three/Octree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/Octree.js -------------------------------------------------------------------------------- /js/thirdparty/three/PRNG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/PRNG.js -------------------------------------------------------------------------------- /js/thirdparty/three/ParametricGeometries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/ParametricGeometries.js -------------------------------------------------------------------------------- /js/thirdparty/three/ShaderDeferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/ShaderDeferred.js -------------------------------------------------------------------------------- /js/thirdparty/three/ShaderGodRays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/ShaderGodRays.js -------------------------------------------------------------------------------- /js/thirdparty/three/ShaderSkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/ShaderSkin.js -------------------------------------------------------------------------------- /js/thirdparty/three/ShaderTerrain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/ShaderTerrain.js -------------------------------------------------------------------------------- /js/thirdparty/three/ShaderToon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/ShaderToon.js -------------------------------------------------------------------------------- /js/thirdparty/three/SimplexNoise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/SimplexNoise.js -------------------------------------------------------------------------------- /js/thirdparty/three/SimulationRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/SimulationRenderer.js -------------------------------------------------------------------------------- /js/thirdparty/three/SkyShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/SkyShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/Sparks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/Sparks.js -------------------------------------------------------------------------------- /js/thirdparty/three/TypedArrayUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/TypedArrayUtils.js -------------------------------------------------------------------------------- /js/thirdparty/three/UCSCharacter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/UCSCharacter.js -------------------------------------------------------------------------------- /js/thirdparty/three/WaterShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/WaterShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/cameras/CombinedCamera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/cameras/CombinedCamera.js -------------------------------------------------------------------------------- /js/thirdparty/three/controls/DeviceOrientationControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/controls/DeviceOrientationControls.js -------------------------------------------------------------------------------- /js/thirdparty/three/controls/EditorControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/controls/EditorControls.js -------------------------------------------------------------------------------- /js/thirdparty/three/controls/FirstPersonControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/controls/FirstPersonControls.js -------------------------------------------------------------------------------- /js/thirdparty/three/controls/FlyControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/controls/FlyControls.js -------------------------------------------------------------------------------- /js/thirdparty/three/controls/MouseControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/controls/MouseControls.js -------------------------------------------------------------------------------- /js/thirdparty/three/controls/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/controls/OrbitControls.js -------------------------------------------------------------------------------- /js/thirdparty/three/controls/OrthographicTrackballControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/controls/OrthographicTrackballControls.js -------------------------------------------------------------------------------- /js/thirdparty/three/controls/PointerLockControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/controls/PointerLockControls.js -------------------------------------------------------------------------------- /js/thirdparty/three/controls/TrackballControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/controls/TrackballControls.js -------------------------------------------------------------------------------- /js/thirdparty/three/controls/TransformControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/controls/TransformControls.js -------------------------------------------------------------------------------- /js/thirdparty/three/controls/VRControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/controls/VRControls.js -------------------------------------------------------------------------------- /js/thirdparty/three/crossfade/gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/crossfade/gui.js -------------------------------------------------------------------------------- /js/thirdparty/three/crossfade/scenes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/crossfade/scenes.js -------------------------------------------------------------------------------- /js/thirdparty/three/crossfade/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/crossfade/transition.js -------------------------------------------------------------------------------- /js/thirdparty/three/curves/NURBSCurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/curves/NURBSCurve.js -------------------------------------------------------------------------------- /js/thirdparty/three/curves/NURBSSurface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/curves/NURBSSurface.js -------------------------------------------------------------------------------- /js/thirdparty/three/curves/NURBSUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/curves/NURBSUtils.js -------------------------------------------------------------------------------- /js/thirdparty/three/effects/AnaglyphEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/effects/AnaglyphEffect.js -------------------------------------------------------------------------------- /js/thirdparty/three/effects/AsciiEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/effects/AsciiEffect.js -------------------------------------------------------------------------------- /js/thirdparty/three/effects/ParallaxBarrierEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/effects/ParallaxBarrierEffect.js -------------------------------------------------------------------------------- /js/thirdparty/three/effects/StereoEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/effects/StereoEffect.js -------------------------------------------------------------------------------- /js/thirdparty/three/effects/VREffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/effects/VREffect.js -------------------------------------------------------------------------------- /js/thirdparty/three/exporters/OBJExporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/exporters/OBJExporter.js -------------------------------------------------------------------------------- /js/thirdparty/three/exporters/STLBinaryExporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/exporters/STLBinaryExporter.js -------------------------------------------------------------------------------- /js/thirdparty/three/exporters/STLExporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/exporters/STLExporter.js -------------------------------------------------------------------------------- /js/thirdparty/three/exporters/SceneExporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/exporters/SceneExporter.js -------------------------------------------------------------------------------- /js/thirdparty/three/exporters/TypedGeometryExporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/exporters/TypedGeometryExporter.js -------------------------------------------------------------------------------- /js/thirdparty/three/geometries/ConvexGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/geometries/ConvexGeometry.js -------------------------------------------------------------------------------- /js/thirdparty/three/geometries/DecalGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/geometries/DecalGeometry.js -------------------------------------------------------------------------------- /js/thirdparty/three/geometries/hilbert2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/geometries/hilbert2D.js -------------------------------------------------------------------------------- /js/thirdparty/three/geometries/hilbert3D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/geometries/hilbert3D.js -------------------------------------------------------------------------------- /js/thirdparty/three/libs/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/libs/dat.gui.min.js -------------------------------------------------------------------------------- /js/thirdparty/three/libs/msgpack-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/libs/msgpack-js.js -------------------------------------------------------------------------------- /js/thirdparty/three/libs/pnltri.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/libs/pnltri.min.js -------------------------------------------------------------------------------- /js/thirdparty/three/libs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/libs/require.js -------------------------------------------------------------------------------- /js/thirdparty/three/libs/stats.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/libs/stats.min.js -------------------------------------------------------------------------------- /js/thirdparty/three/libs/system.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/libs/system.min.js -------------------------------------------------------------------------------- /js/thirdparty/three/libs/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/libs/tween.min.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/AWDLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/AWDLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/AssimpJSONLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/AssimpJSONLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/BabylonLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/BabylonLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/BinaryLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/BinaryLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/ColladaLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/ColladaLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/DDSLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/DDSLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/MTLLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/MTLLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/OBJLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/OBJLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/OBJMTLLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/OBJMTLLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/PDBLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/PDBLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/PLYLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/PLYLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/PVRLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/PVRLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/RGBELoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/RGBELoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/STLLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/STLLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/SVGLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/SVGLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/TGALoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/TGALoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/UTF8Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/UTF8Loader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/VRMLLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/VRMLLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/VTKLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/VTKLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/ctm/CTMLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/ctm/CTMLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/ctm/CTMWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/ctm/CTMWorker.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/ctm/ctm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/ctm/ctm.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/ctm/license/OpenCTM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/ctm/license/OpenCTM.txt -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/ctm/license/js-lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/ctm/license/js-lzma.txt -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/ctm/license/js-openctm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/ctm/license/js-openctm.txt -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/ctm/lzma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/ctm/lzma.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/deprecated/SceneLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/deprecated/SceneLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/gltf/glTF-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/gltf/glTF-parser.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/gltf/glTFAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/gltf/glTFAnimation.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/gltf/glTFLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/gltf/glTFLoader.js -------------------------------------------------------------------------------- /js/thirdparty/three/loaders/gltf/glTFLoaderUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/loaders/gltf/glTFLoaderUtils.js -------------------------------------------------------------------------------- /js/thirdparty/three/math/ColorConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/math/ColorConverter.js -------------------------------------------------------------------------------- /js/thirdparty/three/math/Lut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/math/Lut.js -------------------------------------------------------------------------------- /js/thirdparty/three/modifiers/ExplodeModifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/modifiers/ExplodeModifier.js -------------------------------------------------------------------------------- /js/thirdparty/three/modifiers/SubdivisionModifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/modifiers/SubdivisionModifier.js -------------------------------------------------------------------------------- /js/thirdparty/three/modifiers/TessellateModifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/modifiers/TessellateModifier.js -------------------------------------------------------------------------------- /js/thirdparty/three/objects/ShadowMesh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/objects/ShadowMesh.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/AdaptiveToneMappingPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/AdaptiveToneMappingPass.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/BloomPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/BloomPass.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/BokehPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/BokehPass.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/DotScreenPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/DotScreenPass.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/EffectComposer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/EffectComposer.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/FilmPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/FilmPass.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/GlitchPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/GlitchPass.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/MaskPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/MaskPass.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/RenderPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/RenderPass.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/SavePass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/SavePass.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/ShaderPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/ShaderPass.js -------------------------------------------------------------------------------- /js/thirdparty/three/postprocessing/TexturePass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/postprocessing/TexturePass.js -------------------------------------------------------------------------------- /js/thirdparty/three/renderers/CSS2DRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/renderers/CSS2DRenderer.js -------------------------------------------------------------------------------- /js/thirdparty/three/renderers/CSS3DRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/renderers/CSS3DRenderer.js -------------------------------------------------------------------------------- /js/thirdparty/three/renderers/CSS3DStereoRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/renderers/CSS3DStereoRenderer.js -------------------------------------------------------------------------------- /js/thirdparty/three/renderers/CanvasRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/renderers/CanvasRenderer.js -------------------------------------------------------------------------------- /js/thirdparty/three/renderers/Projector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/renderers/Projector.js -------------------------------------------------------------------------------- /js/thirdparty/three/renderers/RaytracingRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/renderers/RaytracingRenderer.js -------------------------------------------------------------------------------- /js/thirdparty/three/renderers/SVGRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/renderers/SVGRenderer.js -------------------------------------------------------------------------------- /js/thirdparty/three/renderers/SoftwareRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/renderers/SoftwareRenderer.js -------------------------------------------------------------------------------- /js/thirdparty/three/renderers/WebGLDeferredRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/renderers/WebGLDeferredRenderer.js -------------------------------------------------------------------------------- /js/thirdparty/three/renderers/plugins/DepthPassPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/renderers/plugins/DepthPassPlugin.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/BasicShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/BasicShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/BleachBypassShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/BleachBypassShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/BlendShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/BlendShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/BokehShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/BokehShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/BokehShader2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/BokehShader2.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/BrightnessContrastShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/BrightnessContrastShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/ColorCorrectionShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/ColorCorrectionShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/ColorifyShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/ColorifyShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/ConvolutionShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/ConvolutionShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/CopyShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/CopyShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/DOFMipMapShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/DOFMipMapShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/DigitalGlitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/DigitalGlitch.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/DotScreenShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/DotScreenShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/EdgeShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/EdgeShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/EdgeShader2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/EdgeShader2.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/FXAAShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/FXAAShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/FilmShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/FilmShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/FocusShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/FocusShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/FresnelShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/FresnelShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/HorizontalBlurShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/HorizontalBlurShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/HorizontalTiltShiftShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/HorizontalTiltShiftShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/HueSaturationShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/HueSaturationShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/KaleidoShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/KaleidoShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/LuminosityShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/LuminosityShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/MirrorShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/MirrorShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/NormalDisplacementShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/NormalDisplacementShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/NormalMapShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/NormalMapShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/OceanShaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/OceanShaders.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/ParallaxShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/ParallaxShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/RGBShiftShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/RGBShiftShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/SSAOShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/SSAOShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/SepiaShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/SepiaShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/TechnicolorShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/TechnicolorShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/ToneMapShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/ToneMapShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/TriangleBlurShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/TriangleBlurShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/UnpackDepthRGBAShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/UnpackDepthRGBAShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/VerticalBlurShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/VerticalBlurShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/VerticalTiltShiftShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/VerticalTiltShiftShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/shaders/VignetteShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/shaders/VignetteShader.js -------------------------------------------------------------------------------- /js/thirdparty/three/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/three.js -------------------------------------------------------------------------------- /js/thirdparty/three/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/three.min.js -------------------------------------------------------------------------------- /js/thirdparty/three/utils/GeometryUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/utils/GeometryUtils.js -------------------------------------------------------------------------------- /js/thirdparty/three/utils/ShadowMapViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/utils/ShadowMapViewer.js -------------------------------------------------------------------------------- /js/thirdparty/three/utils/UVsDebug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/utils/UVsDebug.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/CircleTypedGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/CircleTypedGeometry.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/GeometryEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/GeometryEditor.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/IndexedTypedGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/IndexedTypedGeometry.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/PlaneTypedGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/PlaneTypedGeometry.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/ProxyGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/ProxyGeometry.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/TypedGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/TypedGeometry.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/BoxGeometry2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/BoxGeometry2.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/Geometry2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/Geometry2.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/Geometry2Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/Geometry2Loader.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/Geometry3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/Geometry3.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/Geometry4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/Geometry4.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/Geometry5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/Geometry5.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/Geometry5b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/Geometry5b.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/IndexedGeometry3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/IndexedGeometry3.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/IndexedGeometry5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/IndexedGeometry5.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/IndexedPlaneGeometry5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/IndexedPlaneGeometry5.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/PlaneGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/PlaneGeometry.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/PlaneGeometry2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/PlaneGeometry2.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/PlaneGeometry2b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/PlaneGeometry2b.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/PlaneGeometry3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/PlaneGeometry3.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/PlaneGeometry5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/PlaneGeometry5.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/PlaneGeometry6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/PlaneGeometry6.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/PlaneGeometry99.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/PlaneGeometry99.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/benchmark/TypedGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/benchmark/TypedGeometry.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/proxies/MultiColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/proxies/MultiColor.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/proxies/MultiVector3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/proxies/MultiVector3.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/proxies/ProxyColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/proxies/ProxyColor.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/proxies/ProxyFace3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/proxies/ProxyFace3.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/proxies/ProxyVector2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/proxies/ProxyVector2.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/proxies/ProxyVector3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/proxies/ProxyVector3.js -------------------------------------------------------------------------------- /js/thirdparty/three/wip/proxies/ProxyVector4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/thirdparty/three/wip/proxies/ProxyVector4.js -------------------------------------------------------------------------------- /js/trinity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/js/trinity.js -------------------------------------------------------------------------------- /scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/scripts/build -------------------------------------------------------------------------------- /scripts/closure-compiler/compiler.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/scripts/closure-compiler/compiler.jar -------------------------------------------------------------------------------- /shaders/advect-fragment-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/advect-fragment-shader.glsl -------------------------------------------------------------------------------- /shaders/advect-vertex-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/advect-vertex-shader.glsl -------------------------------------------------------------------------------- /shaders/copy-fragment-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/copy-fragment-shader.glsl -------------------------------------------------------------------------------- /shaders/copy-vertex-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/copy-vertex-shader.glsl -------------------------------------------------------------------------------- /shaders/div-fragment-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/div-fragment-shader.glsl -------------------------------------------------------------------------------- /shaders/div-vertex-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/div-vertex-shader.glsl -------------------------------------------------------------------------------- /shaders/initial-fragment-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/initial-fragment-shader.glsl -------------------------------------------------------------------------------- /shaders/initial-vertex-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/initial-vertex-shader.glsl -------------------------------------------------------------------------------- /shaders/inject-fragment-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/inject-fragment-shader.glsl -------------------------------------------------------------------------------- /shaders/inject-vertex-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/inject-vertex-shader.glsl -------------------------------------------------------------------------------- /shaders/line-fragment-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/line-fragment-shader.glsl -------------------------------------------------------------------------------- /shaders/line-vertex-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/line-vertex-shader.glsl -------------------------------------------------------------------------------- /shaders/project-fragment-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/project-fragment-shader.glsl -------------------------------------------------------------------------------- /shaders/project-vertex-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/project-vertex-shader.glsl -------------------------------------------------------------------------------- /shaders/tonemap-fragment-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/tonemap-fragment-shader.glsl -------------------------------------------------------------------------------- /shaders/tonemap-vertex-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/tonemap-vertex-shader.glsl -------------------------------------------------------------------------------- /shaders/update-fragment-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/update-fragment-shader.glsl -------------------------------------------------------------------------------- /shaders/update-vertex-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/update-vertex-shader.glsl -------------------------------------------------------------------------------- /shaders/volume-fragment-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/volume-fragment-shader.glsl -------------------------------------------------------------------------------- /shaders/volume-vertex-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/volume-vertex-shader.glsl -------------------------------------------------------------------------------- /shaders/vorticity-fragment-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/vorticity-fragment-shader.glsl -------------------------------------------------------------------------------- /shaders/vorticity-vertex-shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/shaders/vorticity-vertex-shader.glsl -------------------------------------------------------------------------------- /thumbs/Basic-plume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/thumbs/Basic-plume.png -------------------------------------------------------------------------------- /thumbs/Dye-collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/thumbs/Dye-collision.png -------------------------------------------------------------------------------- /thumbs/Plume-sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/thumbs/Plume-sphere.png -------------------------------------------------------------------------------- /thumbs/Plume-walls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/thumbs/Plume-walls.png -------------------------------------------------------------------------------- /thumbs/dust-devil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/thumbs/dust-devil.png -------------------------------------------------------------------------------- /thumbs/fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/thumbs/fireball.png -------------------------------------------------------------------------------- /thumbs/nuke-II.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/thumbs/nuke-II.png -------------------------------------------------------------------------------- /thumbs/nuke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/thumbs/nuke.png -------------------------------------------------------------------------------- /thumbs/vortex-street.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portsmouth/Trinity/HEAD/thumbs/vortex-street.png --------------------------------------------------------------------------------