This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * This script produces a .png image from an Unity scene. | |
| * | |
| * Result image looks like this : https://fr.wikipedia.org/wiki/Fichier:Paris_s%27éveille_equirectangular_panorama.jpg | |
| * | |
| * inspired from : https://docs.unity3d.com/ScriptReference/RenderTexture.ConvertToEquirect.html | |
| * and https://docs.unity3d.com/ScriptReference/Camera.RenderToCubemap.html | |
| * | |
| * To use it add this script to your scene then run | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <summary> | |
| /// Random Number Generator based on Mersenne-Twister algorithm | |
| /// | |
| /// Usage : | |
| /// RandomNumberGenerator.Instance.Generate()); | |
| /// RandomNumberGenerator.Instance.Generate(1.1,2.2); | |
| /// RandomNumberGenerator.Instance.Generate(1,100) | |
| /// | |
| /// inspired from : http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/C-LANG/980409/mt19937-2.c | |
| /// </summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - https://material-ui-next.com/ | |
| - https://appdividend.com/2017/08/23/redux-tutorial-example-scratch/ | |
| - https://github.com/i18next/react-i18next | |
| - https://material-ui-next.com/layout/grid/ | |
| - https://redux.js.org/faq/react-redux#react-not-rerendering | |
| - https://medium.com/@stowball/a-dummys-guide-to-redux-and-thunk-in-react-d8904a7005d3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/python3.4 | |
| # -*- coding: utf-8 -*- | |
| # Crée par MarcAlx | |
| import os | |
| def displayNotification(message,title=None,subtitle=None,soundname=None): | |
| """ | |
| Display an OSX notification with message title an subtitle | |
| sounds are located in /System/Library/Sounds or ~/Library/Sounds |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Some usefull Resources/docs | |
| #### Acrylic | |
| https://docs.microsoft.com/fr-fr/windows/uwp/style/acrylic | |
| #### Listview and gridview | |
| https://msdn.microsoft.com/fr-fr/windows/uwp/controls-and-patterns/listview-and-gridview | |
| #### I18n UWP | |
| https://msdn.microsoft.com/en-us/windows/uwp/globalizing/put-ui-strings-into-resources |
NewerOlder