Compare commits

..

No commits in common. "directory-structure" and "main" have entirely different histories.

10 changed files with 3829 additions and 8 deletions

3816
example.maxpat Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,21 +1,26 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<!--
We start with a basic html 'page' that is the size of the jweb object,
but has no scrollbars nor floating content.
-->
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<link rel="stylesheet" href="./src/lfogui.css"> <link rel="stylesheet" href="./lfogui.css">
</head> </head>
<body> <body>
<div id="lfo-container"></div> <div id="lfo-container"></div>
<script src="./lib/react.js"></script> <script src="./react.js"></script>
<script src="./lib/react-dom.js"></script> <script src="./react-dom.js"></script>
<script src="./lib/moment.js"></script> <script src="./moment.js"></script>
<script src="./src/common.js"></script> <script src="./common.js"></script>
<script src="./src/enums.js"></script> <script src="./enums.js"></script>
<script src="./src/modulators.js"></script> <script src="./modulators.js"></script>
<script src="./src/lfogui.js"></script> <script src="./lfogui.js"></script>
</body> </body>

View File

View File