├── README.md ├── article ├── README.md ├── jcgt201-publishedversion.pdf ├── psrdnoise-fastnoiserot.pdf └── psrdnoise-supplement.pdf ├── docs ├── 2d-gallery │ ├── bloodspatter-webgl.html │ ├── index.html │ ├── noisyplane2d-webgl.html │ ├── noisyplane3d-webgl.html │ ├── psrdnoise.css │ ├── puffyplane-webgl.html │ ├── pyroplane-webgl.html │ ├── wavyplane-webgl.html │ ├── webgl-onequad.js │ └── weirdplane-webgl.html ├── 2d-tutorial │ ├── 2d-drawquad.js │ ├── 2d-psrdnoise-tutorial-01.html │ ├── 2d-psrdnoise-tutorial-02.html │ ├── 2d-psrdnoise-tutorial-03.html │ ├── 2d-psrdnoise-tutorial-04.html │ ├── 2d-psrdnoise-tutorial-05.html │ ├── 2d-psrdnoise-tutorial-06.html │ ├── 2d-psrdnoise-tutorial-07.html │ ├── 2d-psrdnoise-tutorial-08.html │ ├── 2d-psrdnoise-tutorial-09.html │ ├── 2d-psrdnoise-tutorial-10.html │ ├── 2d-psrdnoise-tutorial-11.html │ ├── 2d-psrdnoise-tutorial-12.html │ ├── 2d-psrdnoise-tutorial-13.html │ ├── 2d-psrdnoise-tutorial-14.html │ ├── 2d-psrdnoise-tutorial-15.html │ ├── 2d-psrdnoise-tutorial-16.html │ ├── 2d-psrdnoise-tutorial-17.html │ ├── 2d-psrdnoise-tutorial-18.html │ ├── 2d-psrdnoise-tutorial-19.html │ ├── 2d-psrdnoise-tutorial-20.html │ ├── 2d-psrdnoise-tutorial-21.html │ ├── 2d-psrdnoise-tutorial.css │ ├── index.html │ └── syntaxhighlighter_3.0.83 │ │ ├── LGPL-LICENSE │ │ ├── MIT-LICENSE │ │ ├── compass │ │ ├── _theme_template.scss │ │ ├── config.rb │ │ ├── shCore.scss │ │ ├── shCoreDefault.scss │ │ ├── shCoreDjango.scss │ │ ├── shCoreEclipse.scss │ │ ├── shCoreEmacs.scss │ │ ├── shCoreFadeToGrey.scss │ │ ├── shCoreMDUltra.scss │ │ ├── shCoreMidnight.scss │ │ ├── shCoreRDark.scss │ │ ├── shThemeDefault.scss │ │ ├── shThemeDjango.scss │ │ ├── shThemeEclipse.scss │ │ ├── shThemeEmacs.scss │ │ ├── shThemeFadeToGrey.scss │ │ ├── shThemeMDUltra.scss │ │ ├── shThemeMidnight.scss │ │ └── shThemeRDark.scss │ │ ├── index.html │ │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGLSL.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ │ ├── src │ │ ├── shAutoloader.js │ │ ├── shCore.js │ │ └── shLegacy.js │ │ ├── styles │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css │ │ └── tests │ │ ├── brushes │ │ └── sass.html │ │ ├── brushes_tests.html │ │ └── cases │ │ ├── 001_basic.html │ │ ├── 002_brushes.html │ │ ├── 003_script_tag.html │ │ └── 004_url_parsing.html ├── 3d-gallery │ ├── darkenergycore-threejs.html │ ├── index.html │ ├── js │ │ ├── OrbitControls.js │ │ └── three.min.js │ ├── noisysphere-threejs.html │ ├── psrdnoise.css │ ├── puffysphere-threejs.html │ ├── smokeplume-threejs.html │ ├── sunred-threejs.html │ ├── sunyellow-threejs.html │ ├── wetsphere-threejs.html │ ├── wobblysphere-threejs.html │ └── wooshysphere-threejs.html ├── 3d-tutorial │ ├── 3d-psrdnoise-tutorial-01.html │ ├── 3d-psrdnoise-tutorial-02.html │ ├── 3d-psrdnoise-tutorial-03.html │ ├── 3d-psrdnoise-tutorial-04.html │ ├── 3d-psrdnoise-tutorial-05.html │ ├── 3d-psrdnoise-tutorial-06.html │ ├── 3d-psrdnoise-tutorial-07.html │ ├── 3d-psrdnoise-tutorial.css │ ├── bumpmapping.pdf │ ├── index.html │ ├── js │ │ ├── OrbitControls.js │ │ └── three.min.js │ └── syntaxhighlighter_3.0.83 │ │ ├── LGPL-LICENSE │ │ ├── MIT-LICENSE │ │ ├── compass │ │ ├── _theme_template.scss │ │ ├── config.rb │ │ ├── shCore.scss │ │ ├── shCoreDefault.scss │ │ ├── shCoreDjango.scss │ │ ├── shCoreEclipse.scss │ │ ├── shCoreEmacs.scss │ │ ├── shCoreFadeToGrey.scss │ │ ├── shCoreMDUltra.scss │ │ ├── shCoreMidnight.scss │ │ ├── shCoreRDark.scss │ │ ├── shThemeDefault.scss │ │ ├── shThemeDjango.scss │ │ ├── shThemeEclipse.scss │ │ ├── shThemeEmacs.scss │ │ ├── shThemeFadeToGrey.scss │ │ ├── shThemeMDUltra.scss │ │ ├── shThemeMidnight.scss │ │ └── shThemeRDark.scss │ │ ├── index.html │ │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGLSL.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ │ ├── src │ │ ├── shAutoloader.js │ │ ├── shCore.js │ │ └── shLegacy.js │ │ ├── styles │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css │ │ └── tests │ │ ├── brushes │ │ └── sass.html │ │ ├── brushes_tests.html │ │ └── cases │ │ ├── 001_basic.html │ │ ├── 002_brushes.html │ │ ├── 003_script_tag.html │ │ ├── 004_url_parsing.html │ │ ├── 005_no_gutter.html │ │ ├── 006_pad_line_numbers.html │ │ ├── 007_collapse.html │ │ ├── 007_collapse_interaction.html │ │ ├── 008_first_line.html │ │ ├── 009_class_name.html │ │ ├── 010_highlight.html │ │ ├── 011_smart_tabs.html │ │ ├── 012_server_side.html │ │ ├── 013_html_script.html │ │ └── 014_legacy.html ├── index.html ├── psrdnoise.css └── test │ ├── noisebench-mediump.html │ ├── psrdnoise2-highp.html │ ├── psrdnoise2-mediump.html │ ├── showprecision.html │ └── webgl-onequad.js └── src ├── README.md ├── hlsl ├── LICENSE ├── README.md ├── ashima │ ├── LICENSE │ ├── README.md │ ├── cellular2D.hlsl │ ├── cellular2x2.hlsl │ ├── cellular2x2x2.hlsl │ ├── cellular3D.hlsl │ ├── classicnoise2D.hlsl │ ├── classicnoise3D.hlsl │ ├── classicnoise4D.hlsl │ ├── noise2D.hlsl │ ├── noise3D.hlsl │ ├── noise3Dgrad.hlsl │ ├── noise4D.hlsl │ └── psrdnoise2D.hlsl ├── common │ ├── glsl-translations.hlsl │ └── stegu-math.hlsl ├── noise-include-all.hlsl └── stegu-psrdnoise │ ├── LICENSE.md │ ├── README.md │ ├── mpsrdnoise2.hlsl │ ├── psrddnoise2.hlsl │ ├── psrddnoise3.hlsl │ ├── psrdnoise2.hlsl │ └── psrdnoise3.hlsl ├── mpsrdnoise2.glsl ├── psrddnoise2.glsl ├── psrddnoise3.glsl ├── psrdnoise2-min.glsl ├── psrdnoise2.glsl ├── psrdnoise2.wgsl ├── psrdnoise3-min.glsl ├── psrdnoise3.glsl └── psrdnoise3.wgsl /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/README.md -------------------------------------------------------------------------------- /article/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/article/README.md -------------------------------------------------------------------------------- /article/jcgt201-publishedversion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/article/jcgt201-publishedversion.pdf -------------------------------------------------------------------------------- /article/psrdnoise-fastnoiserot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/article/psrdnoise-fastnoiserot.pdf -------------------------------------------------------------------------------- /article/psrdnoise-supplement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/article/psrdnoise-supplement.pdf -------------------------------------------------------------------------------- /docs/2d-gallery/bloodspatter-webgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-gallery/bloodspatter-webgl.html -------------------------------------------------------------------------------- /docs/2d-gallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-gallery/index.html -------------------------------------------------------------------------------- /docs/2d-gallery/noisyplane2d-webgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-gallery/noisyplane2d-webgl.html -------------------------------------------------------------------------------- /docs/2d-gallery/noisyplane3d-webgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-gallery/noisyplane3d-webgl.html -------------------------------------------------------------------------------- /docs/2d-gallery/psrdnoise.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-gallery/psrdnoise.css -------------------------------------------------------------------------------- /docs/2d-gallery/puffyplane-webgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-gallery/puffyplane-webgl.html -------------------------------------------------------------------------------- /docs/2d-gallery/pyroplane-webgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-gallery/pyroplane-webgl.html -------------------------------------------------------------------------------- /docs/2d-gallery/wavyplane-webgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-gallery/wavyplane-webgl.html -------------------------------------------------------------------------------- /docs/2d-gallery/webgl-onequad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-gallery/webgl-onequad.js -------------------------------------------------------------------------------- /docs/2d-gallery/weirdplane-webgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-gallery/weirdplane-webgl.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-drawquad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-drawquad.js -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-01.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-02.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-03.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-04.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-05.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-06.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-07.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-08.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-08.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-09.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-09.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-10.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-11.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-12.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-13.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-14.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-15.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-16.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-17.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-18.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-19.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-20.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial-21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial-21.html -------------------------------------------------------------------------------- /docs/2d-tutorial/2d-psrdnoise-tutorial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/2d-psrdnoise-tutorial.css -------------------------------------------------------------------------------- /docs/2d-tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/index.html -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/LGPL-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/LGPL-LICENSE -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/MIT-LICENSE -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/_theme_template.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/_theme_template.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/config.rb -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCore.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCore.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreDefault.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreDefault.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreDjango.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreDjango.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreEclipse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreEclipse.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreEmacs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreEmacs.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreFadeToGrey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreFadeToGrey.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreMDUltra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreMDUltra.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreMidnight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreMidnight.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreRDark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreRDark.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeDefault.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeDefault.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeDjango.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeDjango.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeEclipse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeEclipse.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeEmacs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeEmacs.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeFadeToGrey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeFadeToGrey.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeMDUltra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeMDUltra.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeMidnight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeMidnight.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeRDark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeRDark.scss -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/index.html -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shAutoloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shAutoloader.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushAS3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushAS3.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushAppleScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushAppleScript.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushBash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushBash.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCSharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCSharp.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushColdFusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushColdFusion.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCpp.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCss.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushDelphi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushDelphi.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushDiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushDiff.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushErlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushErlang.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushGLSL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushGLSL.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushGroovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushGroovy.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJScript.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJava.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJava.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJavaFX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJavaFX.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPerl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPerl.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPhp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPhp.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPlain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPlain.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPowerShell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPowerShell.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPython.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPython.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushRuby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushRuby.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushSass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushSass.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushScala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushScala.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushSql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushSql.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushVb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushVb.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushXml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushXml.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shCore.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/scripts/shLegacy.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/src/shAutoloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/src/shAutoloader.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/src/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/src/shCore.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/src/shLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/src/shLegacy.js -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCore.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreDefault.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreDjango.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreEclipse.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreEmacs.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreFadeToGrey.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreMDUltra.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreMidnight.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreRDark.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeDefault.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeDjango.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeEclipse.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeEmacs.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeFadeToGrey.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeMDUltra.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeMidnight.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeRDark.css -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/brushes/sass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/brushes/sass.html -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/brushes_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/brushes_tests.html -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/cases/001_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/cases/001_basic.html -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/cases/002_brushes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/cases/002_brushes.html -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/cases/003_script_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/cases/003_script_tag.html -------------------------------------------------------------------------------- /docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/cases/004_url_parsing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/2d-tutorial/syntaxhighlighter_3.0.83/tests/cases/004_url_parsing.html -------------------------------------------------------------------------------- /docs/3d-gallery/darkenergycore-threejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/darkenergycore-threejs.html -------------------------------------------------------------------------------- /docs/3d-gallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/index.html -------------------------------------------------------------------------------- /docs/3d-gallery/js/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/js/OrbitControls.js -------------------------------------------------------------------------------- /docs/3d-gallery/js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/js/three.min.js -------------------------------------------------------------------------------- /docs/3d-gallery/noisysphere-threejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/noisysphere-threejs.html -------------------------------------------------------------------------------- /docs/3d-gallery/psrdnoise.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/psrdnoise.css -------------------------------------------------------------------------------- /docs/3d-gallery/puffysphere-threejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/puffysphere-threejs.html -------------------------------------------------------------------------------- /docs/3d-gallery/smokeplume-threejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/smokeplume-threejs.html -------------------------------------------------------------------------------- /docs/3d-gallery/sunred-threejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/sunred-threejs.html -------------------------------------------------------------------------------- /docs/3d-gallery/sunyellow-threejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/sunyellow-threejs.html -------------------------------------------------------------------------------- /docs/3d-gallery/wetsphere-threejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/wetsphere-threejs.html -------------------------------------------------------------------------------- /docs/3d-gallery/wobblysphere-threejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/wobblysphere-threejs.html -------------------------------------------------------------------------------- /docs/3d-gallery/wooshysphere-threejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-gallery/wooshysphere-threejs.html -------------------------------------------------------------------------------- /docs/3d-tutorial/3d-psrdnoise-tutorial-01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/3d-psrdnoise-tutorial-01.html -------------------------------------------------------------------------------- /docs/3d-tutorial/3d-psrdnoise-tutorial-02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/3d-psrdnoise-tutorial-02.html -------------------------------------------------------------------------------- /docs/3d-tutorial/3d-psrdnoise-tutorial-03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/3d-psrdnoise-tutorial-03.html -------------------------------------------------------------------------------- /docs/3d-tutorial/3d-psrdnoise-tutorial-04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/3d-psrdnoise-tutorial-04.html -------------------------------------------------------------------------------- /docs/3d-tutorial/3d-psrdnoise-tutorial-05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/3d-psrdnoise-tutorial-05.html -------------------------------------------------------------------------------- /docs/3d-tutorial/3d-psrdnoise-tutorial-06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/3d-psrdnoise-tutorial-06.html -------------------------------------------------------------------------------- /docs/3d-tutorial/3d-psrdnoise-tutorial-07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/3d-psrdnoise-tutorial-07.html -------------------------------------------------------------------------------- /docs/3d-tutorial/3d-psrdnoise-tutorial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/3d-psrdnoise-tutorial.css -------------------------------------------------------------------------------- /docs/3d-tutorial/bumpmapping.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/bumpmapping.pdf -------------------------------------------------------------------------------- /docs/3d-tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/index.html -------------------------------------------------------------------------------- /docs/3d-tutorial/js/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/js/OrbitControls.js -------------------------------------------------------------------------------- /docs/3d-tutorial/js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/js/three.min.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/LGPL-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/LGPL-LICENSE -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/MIT-LICENSE -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/_theme_template.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/_theme_template.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/config.rb -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCore.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCore.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreDefault.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreDefault.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreDjango.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreDjango.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreEclipse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreEclipse.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreEmacs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreEmacs.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreFadeToGrey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreFadeToGrey.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreMDUltra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreMDUltra.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreMidnight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreMidnight.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreRDark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shCoreRDark.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeDefault.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeDefault.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeDjango.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeDjango.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeEclipse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeEclipse.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeEmacs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeEmacs.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeFadeToGrey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeFadeToGrey.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeMDUltra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeMDUltra.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeMidnight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeMidnight.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeRDark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/compass/shThemeRDark.scss -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/index.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shAutoloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shAutoloader.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushAS3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushAS3.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushAppleScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushAppleScript.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushBash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushBash.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCSharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCSharp.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushColdFusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushColdFusion.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCpp.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushCss.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushDelphi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushDelphi.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushDiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushDiff.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushErlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushErlang.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushGLSL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushGLSL.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushGroovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushGroovy.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJScript.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJava.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJava.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJavaFX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushJavaFX.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPerl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPerl.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPhp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPhp.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPlain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPlain.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPowerShell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPowerShell.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPython.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushPython.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushRuby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushRuby.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushSass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushSass.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushScala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushScala.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushSql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushSql.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushVb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushVb.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushXml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shBrushXml.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shCore.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/scripts/shLegacy.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/src/shAutoloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/src/shAutoloader.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/src/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/src/shCore.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/src/shLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/src/shLegacy.js -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCore.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreDefault.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreDjango.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreEclipse.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreEmacs.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreFadeToGrey.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreMDUltra.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreMidnight.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shCoreRDark.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeDefault.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeDjango.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeEclipse.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeEmacs.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeFadeToGrey.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeMDUltra.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeMidnight.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/styles/shThemeRDark.css -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/brushes/sass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/brushes/sass.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/brushes_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/brushes_tests.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/001_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/001_basic.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/002_brushes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/002_brushes.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/003_script_tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/003_script_tag.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/004_url_parsing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/004_url_parsing.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/005_no_gutter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/005_no_gutter.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/006_pad_line_numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/006_pad_line_numbers.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/007_collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/007_collapse.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/007_collapse_interaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/007_collapse_interaction.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/008_first_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/008_first_line.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/009_class_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/009_class_name.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/010_highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/010_highlight.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/011_smart_tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/011_smart_tabs.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/012_server_side.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/012_server_side.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/013_html_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/013_html_script.html -------------------------------------------------------------------------------- /docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/014_legacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/3d-tutorial/syntaxhighlighter_3.0.83/tests/cases/014_legacy.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/psrdnoise.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/psrdnoise.css -------------------------------------------------------------------------------- /docs/test/noisebench-mediump.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/test/noisebench-mediump.html -------------------------------------------------------------------------------- /docs/test/psrdnoise2-highp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/test/psrdnoise2-highp.html -------------------------------------------------------------------------------- /docs/test/psrdnoise2-mediump.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/test/psrdnoise2-mediump.html -------------------------------------------------------------------------------- /docs/test/showprecision.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/test/showprecision.html -------------------------------------------------------------------------------- /docs/test/webgl-onequad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/docs/test/webgl-onequad.js -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/README.md -------------------------------------------------------------------------------- /src/hlsl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/LICENSE -------------------------------------------------------------------------------- /src/hlsl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/README.md -------------------------------------------------------------------------------- /src/hlsl/ashima/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/LICENSE -------------------------------------------------------------------------------- /src/hlsl/ashima/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/README.md -------------------------------------------------------------------------------- /src/hlsl/ashima/cellular2D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/cellular2D.hlsl -------------------------------------------------------------------------------- /src/hlsl/ashima/cellular2x2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/cellular2x2.hlsl -------------------------------------------------------------------------------- /src/hlsl/ashima/cellular2x2x2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/cellular2x2x2.hlsl -------------------------------------------------------------------------------- /src/hlsl/ashima/cellular3D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/cellular3D.hlsl -------------------------------------------------------------------------------- /src/hlsl/ashima/classicnoise2D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/classicnoise2D.hlsl -------------------------------------------------------------------------------- /src/hlsl/ashima/classicnoise3D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/classicnoise3D.hlsl -------------------------------------------------------------------------------- /src/hlsl/ashima/classicnoise4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/classicnoise4D.hlsl -------------------------------------------------------------------------------- /src/hlsl/ashima/noise2D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/noise2D.hlsl -------------------------------------------------------------------------------- /src/hlsl/ashima/noise3D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/noise3D.hlsl -------------------------------------------------------------------------------- /src/hlsl/ashima/noise3Dgrad.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/noise3Dgrad.hlsl -------------------------------------------------------------------------------- /src/hlsl/ashima/noise4D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/noise4D.hlsl -------------------------------------------------------------------------------- /src/hlsl/ashima/psrdnoise2D.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/ashima/psrdnoise2D.hlsl -------------------------------------------------------------------------------- /src/hlsl/common/glsl-translations.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/common/glsl-translations.hlsl -------------------------------------------------------------------------------- /src/hlsl/common/stegu-math.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/common/stegu-math.hlsl -------------------------------------------------------------------------------- /src/hlsl/noise-include-all.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/noise-include-all.hlsl -------------------------------------------------------------------------------- /src/hlsl/stegu-psrdnoise/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/stegu-psrdnoise/LICENSE.md -------------------------------------------------------------------------------- /src/hlsl/stegu-psrdnoise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/stegu-psrdnoise/README.md -------------------------------------------------------------------------------- /src/hlsl/stegu-psrdnoise/mpsrdnoise2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/stegu-psrdnoise/mpsrdnoise2.hlsl -------------------------------------------------------------------------------- /src/hlsl/stegu-psrdnoise/psrddnoise2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/stegu-psrdnoise/psrddnoise2.hlsl -------------------------------------------------------------------------------- /src/hlsl/stegu-psrdnoise/psrddnoise3.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/stegu-psrdnoise/psrddnoise3.hlsl -------------------------------------------------------------------------------- /src/hlsl/stegu-psrdnoise/psrdnoise2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/stegu-psrdnoise/psrdnoise2.hlsl -------------------------------------------------------------------------------- /src/hlsl/stegu-psrdnoise/psrdnoise3.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/hlsl/stegu-psrdnoise/psrdnoise3.hlsl -------------------------------------------------------------------------------- /src/mpsrdnoise2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/mpsrdnoise2.glsl -------------------------------------------------------------------------------- /src/psrddnoise2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/psrddnoise2.glsl -------------------------------------------------------------------------------- /src/psrddnoise3.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/psrddnoise3.glsl -------------------------------------------------------------------------------- /src/psrdnoise2-min.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/psrdnoise2-min.glsl -------------------------------------------------------------------------------- /src/psrdnoise2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/psrdnoise2.glsl -------------------------------------------------------------------------------- /src/psrdnoise2.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/psrdnoise2.wgsl -------------------------------------------------------------------------------- /src/psrdnoise3-min.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/psrdnoise3-min.glsl -------------------------------------------------------------------------------- /src/psrdnoise3.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/psrdnoise3.glsl -------------------------------------------------------------------------------- /src/psrdnoise3.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegu/psrdnoise/HEAD/src/psrdnoise3.wgsl --------------------------------------------------------------------------------