-
Hi Stewart, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi there. Thank you for the kind words! The only 3rd party tools used in Q.js are Other than that, it’s just pure (custom) JavaScript. The “build” script literally just concatenates the JavaScript files and the CSS files. (I have yet to find a good JS compression tool that respects String Template literals as used in Q.js.) I had started to kick the tires on a This page explains my approach to building Q.js; how I have tried to make it very simple for folks to run right off of their own desktops and to be easily hackable by design: |
Beta Was this translation helpful? Give feedback.
Hi there. Thank you for the kind words!
The only 3rd party tools used in Q.js are
Three
,Tween
, andMeshLine
as found in this folder: https://github.com/stewdio/q.js/tree/master/assetsOther than that, it’s just pure (custom) JavaScript. The “build” script literally just concatenates the JavaScript files and the CSS files. (I have yet to find a good JS compression tool that respects String Template literals as used in Q.js.) I had started to kick the tires on a
WebGPU
version that uses hardware acceleration to simulate quantum computation, but... I’ve just been too busy to give Q.js much love recently 😅This page explains my approach to building Q.js; how I have tried to make it very simpl…