From ac5de6c9390c2a6418eb1cff9560b57fb945d783 Mon Sep 17 00:00:00 2001 From: Mugen87 Date: Fri, 24 May 2019 12:00:07 +0200 Subject: [PATCH] JSM: Added module and TS file for SSAOPass and SimplexNoise. --- .../en/introduction/Import-via-modules.html | 6 + examples/jsm/math/SimplexNoise.d.ts | 9 + examples/jsm/math/SimplexNoise.js | 407 ++++++++++++++++ examples/jsm/postprocessing/SSAOPass.d.ts | 56 +++ examples/jsm/postprocessing/SSAOPass.js | 436 ++++++++++++++++++ utils/modularize.js | 3 + 6 files changed, 917 insertions(+) create mode 100644 examples/jsm/math/SimplexNoise.d.ts create mode 100644 examples/jsm/math/SimplexNoise.js create mode 100644 examples/jsm/postprocessing/SSAOPass.d.ts create mode 100644 examples/jsm/postprocessing/SSAOPass.js diff --git a/docs/manual/en/introduction/Import-via-modules.html b/docs/manual/en/introduction/Import-via-modules.html index 4f8449f54ca0ea..5cc905306399ae 100644 --- a/docs/manual/en/introduction/Import-via-modules.html +++ b/docs/manual/en/introduction/Import-via-modules.html @@ -143,6 +143,11 @@

Importable Examples

  • VRMLLoader
  • +
  • math + +
  • objects