Browse Source

Remove sideways restrictions and let the image repeat on the sides

Patrick Augusto 4 năm trước cách đây
mục cha
commit
54c35162d1
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      Pixel.js

+ 2 - 2
Pixel.js

@@ -73,7 +73,7 @@ const draw = function(ctx, source, coords) {
         draw(ctx, (parseInt(source, 2) - (2 ** (canvas.level + 1) / 2)).toString(2).padStart(source.length, 0),
             { x: img.x, y: img.y - img.height * 2 });
 
-    if (true)
+    //if (true)
         draw(ctx, (parseInt(source, 2) + 4).toString(2).padStart(source.length, 0),
             { x: img.x + img.width * 2, y: img.y });
 
@@ -81,7 +81,7 @@ const draw = function(ctx, source, coords) {
         draw(ctx, (parseInt(source, 2) + (2 ** (canvas.level + 1) / 2)).toString(2).padStart(source.length, 0),
             { x: img.x, y: img.y + img.height * 2 });
 
-    if (parseInt(source + "00", 2) % (2 ** (canvas.level + 1) * 2))
+    //if (parseInt(source + "00", 2) % (2 ** (canvas.level + 1) * 2))
         draw(ctx, (parseInt(source, 2) - 4).toString(2).padStart(source.length, 0),
             { x: img.x - img.width * 2, y: img.y });
 };