Can I import modules to my mobile Sololearn playground? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can I import modules to my mobile Sololearn playground?

I just want to play around with some OpenGL and I have no idea if I can possibly import it here...

11th Dec 2017, 10:31 PM
Paweł Karaś
Paweł Karaś - avatar
8 Answers
+ 7
nope, code playground doesn's support that. if you want to play with opengl you should use pc
11th Dec 2017, 10:34 PM
Roabs
Roabs - avatar
+ 6
There are some interesting solutions to getting at the GPU but I settled on regl and MathBox. Using regl makes things easier, but not 'too' easy, while MathBox has an animated presentation focus but is complex. I can link codes if you want; just don't want to spoil the fun. Support on SoloLearn is spotty (Android / WebView versions) but a couple codes have still done well :)
12th Dec 2017, 6:33 AM
Kirk Schafer
Kirk Schafer - avatar
+ 5
Only way to play with *GL on SoloLearn is in Web (possibly PHP, but why?) codes.
12th Dec 2017, 2:30 AM
Kirk Schafer
Kirk Schafer - avatar
+ 4
edit: [FIXED] something's not right here - this is a GL constant (and I'm looking into it) If you can get a webgl context, you can ask some things about the GPU, e.g., the amount of texture memory you can use: <body><canvas></canvas></body> <script> var cvs = document.getElementsByTagName("canvas")[0]; var gl = cvs.getContext('webgl'); alert(gl.getParameter(gl.MAX_TEXTURE_SIZE)); </script> I'm working on a code to properly dump all properties.
13th Dec 2017, 1:43 AM
Kirk Schafer
Kirk Schafer - avatar
+ 3
Using regl.party: [1] Karl's T.'s Cylinder, got some nice attention [2] Short and simple rotating triangle with only a couple controls [3] Plasma code (not mine) adapted to the GPU, source links included. If it crashes due to a Javascript issue, try the compatible version linked in its comments. Check out Karl's codes for a couple more examples. Using MathBox: [4] 3D function view - adapted again, but I added some stuff. 1. https://code.sololearn.com/W2bfb7TpGJkk/?ref=app 2. https://code.sololearn.com/Wcw9kppQxRid/?ref=app 3. https://code.sololearn.com/WXo4dZV4H087/?ref=app 4. https://code.sololearn.com/W0jzXMT5qIp0/?ref=app
13th Dec 2017, 1:40 AM
Kirk Schafer
Kirk Schafer - avatar
+ 1
Shame :(
11th Dec 2017, 10:35 PM
Paweł Karaś
Paweł Karaś - avatar
+ 1
Kirk, and JavaScript... But I'm asking because I have no time recently to code on my computer...
12th Dec 2017, 6:11 AM
Paweł Karaś
Paweł Karaś - avatar
0
sure ;) That'll be great
12th Dec 2017, 10:39 PM
Paweł Karaś
Paweł Karaś - avatar