Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
...
Checking mergeability… Don’t worry, you can still create the pull request.
  • 10 commits
  • 66 files changed
  • 0 commit comments
  • 5 contributors
Showing with 22 additions and 4 deletions.
  1. +0 −1 .gitignore
  2. +14 −0 Docker/docker-compose.yml
  3. +3 −0 src/.bowerrc
  4. +2 −0 src/.gitignore
  5. 0 { → src}/css/main.css
  6. 0 { → src}/index.html
  7. 0 { → src}/js/loader/stl.js
  8. +3 −3 { → src}/js/main.js
  9. 0 { → src}/js/slacer/mesh.js
  10. 0 { → src}/js/slacer/settings.js
  11. 0 { → src}/js/slacer/slicer.js
  12. 0 { → src}/js/slacer/viewcontrols.js
  13. 0 { → src}/js/slacer/viewer.js
  14. 0 { → src}/js/slacer/viewer2d.js
  15. 0 { → src}/js/slacer/viewer3d.js
  16. BIN { → src}/screenshot.png
  17. 0 { → src}/stl/Octocat-v2.stl
  18. BIN { → src}/stl/SLAcer.stl
  19. 0 { → src}/stl/StressTest.stl
  20. BIN { → src}/stl/cube.center.stl
  21. BIN { → src}/stl/cube_hole.stl
  22. 0 { → src}/vendor/FileSaver.min.js
  23. 0 { → src}/vendor/OrbitControls.js
  24. 0 { → src}/vendor/bootstrap-colorpicker/css/bootstrap-colorpicker.css
  25. 0 { → src}/vendor/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css
  26. BIN { → src}/vendor/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png
  27. BIN { → src}/vendor/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha.png
  28. BIN { → src}/vendor/bootstrap-colorpicker/img/bootstrap-colorpicker/hue-horizontal.png
  29. BIN { → src}/vendor/bootstrap-colorpicker/img/bootstrap-colorpicker/hue.png
  30. BIN { → src}/vendor/bootstrap-colorpicker/img/bootstrap-colorpicker/saturation.png
  31. 0 { → src}/vendor/bootstrap-colorpicker/js/bootstrap-colorpicker.js
  32. 0 { → src}/vendor/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js
  33. 0 { → src}/vendor/bootstrap-slider/bootstrap-slider.js
  34. 0 { → src}/vendor/bootstrap-slider/bootstrap-slider.min.js
  35. 0 { → src}/vendor/bootstrap-slider/css/bootstrap-slider.css
  36. 0 { → src}/vendor/bootstrap-slider/css/bootstrap-slider.min.css
  37. 0 { → src}/vendor/bootstrap/css/bootstrap-theme.css
  38. 0 { → src}/vendor/bootstrap/css/bootstrap-theme.css.map
  39. 0 { → src}/vendor/bootstrap/css/bootstrap-theme.min.css
  40. 0 { → src}/vendor/bootstrap/css/bootstrap.css
  41. 0 { → src}/vendor/bootstrap/css/bootstrap.css.map
  42. 0 { → src}/vendor/bootstrap/css/bootstrap.min.css
  43. BIN { → src}/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot
  44. 0 { → src}/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg
  45. BIN { → src}/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf
  46. BIN { → src}/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff
  47. BIN { → src}/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2
  48. 0 { → src}/vendor/bootstrap/js/bootstrap.js
  49. 0 { → src}/vendor/bootstrap/js/bootstrap.min.js
  50. 0 { → src}/vendor/bootstrap/js/npm.js
  51. 0 { → src}/vendor/earcut.js
  52. 0 { → src}/vendor/jquery-2.1.4.min.js
  53. 0 { → src}/vendor/jquery-ui/jquery-ui.min.css
  54. 0 { → src}/vendor/jquery-ui/jquery-ui.min.js
  55. 0 { → src}/vendor/jszip.min.js
  56. 0 { → src}/vendor/libtess.min.js
  57. 0 { → src}/vendor/lodash.min.js
  58. 0 { → src}/vendor/poly2tri.min.js
  59. 0 { → src}/vendor/tessy.js
  60. 0 { → src}/vendor/three.min.js
  61. 0 { → src}/vendor/triangulation.js
  62. 0 { → src}/vendor/triangulation/.gitignore
  63. 0 { → src}/vendor/triangulation/README.md
  64. 0 { → src}/vendor/triangulation/tessy.js
  65. 0 { → src}/vendor/triangulation/triangulation.js
  66. 0 { → src}/viewer2d.html
View
@@ -1 +0,0 @@
-_*.*
View
@@ -0,0 +1,14 @@
+static-web:
+
+ image: nginx
+ environment:
+ - VIRTUAL_HOST=${FQDN}
+
+ volumes:
+ - ../src:/usr/share/nginx/html:ro
+ expose:
+ - 80
+ restart: unless-stopped
+# uncomment if you don't have another proxy
+# port:
+# - 80:80
View
@@ -0,0 +1,3 @@
+{
+ "directory" : "vendors"
+}
View
@@ -0,0 +1,2 @@
+_*.*
+/vendors/
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -681,7 +681,7 @@ function updateBuildVolumeSettings() {
});
viewer3d.setBuildVolume(settings.get('buildVolume'));
- viewer3d.dropObject(slicer.mesh);
+ slicer.mesh && viewer3d.dropObject(slicer.mesh);
viewer3d.render();
size && updateMeshInfoUI();
@@ -1064,8 +1064,8 @@ var stl = 'stl/StressTest.stl';
//var stl = 'stl/SLAcer.stl';
// File url
-var url = 'http://' + window.location.hostname + window.location.pathname + stl;
-
+// var url = 'http://' + window.location.hostname + window.location.pathname + stl;
+var url = window.location.href + stl;
// Create http request object
var xmlhttp = new XMLHttpRequest();
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

No commit comments for this range