{"id":2989,"date":"2024-07-16T14:20:18","date_gmt":"2024-07-16T14:20:18","guid":{"rendered":"https:\/\/cpstesters.com\/minecraft-sphere-generator-%d7%9e%d7%97%d7%95%d7%9c%d7%9c-%d7%9b%d7%99%d7%a4%d7%aa-%d7%9e%d7%99%d7%99%d7%a0%d7%a7%d7%a8%d7%90%d7%a4%d7%98\/"},"modified":"2024-09-17T15:37:57","modified_gmt":"2024-09-17T15:37:57","slug":"minecraft-sphere-generator","status":"publish","type":"page","link":"https:\/\/cpstesters.com\/he\/minecraft-sphere-generator\/","title":{"rendered":"\u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d3\u05d5\u05e8 \u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8 | \u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d9\u05e4\u05ea \u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8"},"content":{"rendered":"\n<p>Minecraft Sphere Generator \u05d4\u05d5\u05d0 \u05db\u05dc\u05d9 \u05d4\u05de\u05e9\u05de\u05e9 \u05dc\u05d9\u05d9\u05e6\u05d5\u05e8 \u05db\u05d3\u05d5\u05e8\u05d9 \u05db\u05d9\u05e4\u05d4 \u05d5\u05e4\u05d9\u05e7\u05e1\u05dc\u05d9\u05dd \u05db\u05d3\u05d9 \u05dc\u05d4\u05e8\u05d7\u05d9\u05d1 \u05d0\u05ea \u05e0\u05d5\u05e4\u05d9 Minecraft, \u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05d6\u05d4 \u05e2\u05db\u05e9\u05d9\u05d5!<\/p>\n\n\n<style>\r\n        label {\r\n            display: inline-block;\r\n            width: 7em;\r\n            font-size: 20px;\r\n            font-weight: bold;\r\n        }\r\n        \r\n        #txtRadius {\r\n            font-size: 20px;\r\n        }\r\n        \r\n        #output {\r\n\t\t\toverflow: scroll;\r\n\t\t\tdisplay: flex;\r\n\t\t\theight: fit-content;\r\n        }\r\n    \r\n        #output table {\r\n            border-collapse: collapse;\r\n            border: 2px solid;\r\n            float: left;\r\n            margin: 5px;\r\n        }\r\n    \r\n        #output td {\r\n            \/*display: block;*\/\r\n            background-color: #FFFFFF;\r\n        }\r\n    \r\n        #output div {\r\n            width: 8px;\r\n            height: 8px;\r\n            overflow: hidden;\r\n        }\r\n    \r\n        #output td.prev_empty {\r\n            background-color: #AAAAAA;\r\n        }\r\n    \r\n        #output td.empty {\r\n            background-color: #FFFFFF;\r\n        }\r\n    \r\n        #output td.prev_full {\r\n            background-color: #660000;\r\n        }\r\n    \r\n        #output td.full {\r\n            background-color: #EE0000;\r\n        }\r\n    \r\n        #output td.prev_open {\r\n            background-color: #006600;\r\n        }\r\n    \r\n        #output td.open {\r\n            background-color: #00EE00;\r\n        }\r\n        \r\n        #generate_btn {\r\n            padding: 10px 20px;\r\n            border-radius: 5px;\r\n            border: 1px solid black;\r\n        }\r\n    <\/style>\r\n<div>\r\n<div class=\"form_item\">\r\n<label>Radius:<\/label>\r\n<input type=\"text\" id=\"txtRadius\" value=\"6\" \/>\r\n<\/div>\r\n<div class=\"form_item\">\r\n<label>Fill:<\/label>\r\n<input type=\"checkbox\" id=\"chkFill\" value=\"true\" checked=\"\" \/> Either fill the sphere, or calculate which position may be left empty.\r\n<\/div>\r\n<div class=\"form_item\">\r\n<label>Hints:<\/label>\r\n<input type=\"checkbox\" id=\"chkHints\" value=\"true\" checked=\"\" \/> On each layer darken the previous layer to ease building.\r\n<\/div>\r\n<div class=\"form_item\">\r\n<label>Block-align:<\/label>\r\n<input type=\"checkbox\" id=\"chkMiddle\" value=\"true\" \/>\r\n<\/div>\r\n<br>\r\n<input id=\"generate_btn\" type=\"button\" value=\"Generate\" \/>\r\n<\/div>\r\n<br>\r\n<div id=\"blocks-out\"><\/div>\r\n<br>\r\n<div id=\"output\"><\/div>\r\n<script>\r\n        jQuery(document).ready(function () {\r\n           jQuery('#generate_btn').click(function () {\r\n                generate();\r\n            });\r\n        });\r\n        \r\n        generate();\r\n\r\n        function generate() {\r\n            var radius = parseFloat(jQuery('#txtRadius').val());\r\n            var fill = isChecked('chkFill');\r\n            var hints = isChecked('chkHints');\r\n            var middle = isChecked('chkMiddle');\r\n            var blocks = generateBlocks(radius, middle);\r\n\r\n            if (!fill) {\r\n                blocks = purgeBlocks(blocks);\r\n            }\r\n\r\n            printBlocks(blocks, hints);\r\n        }\r\n\r\n        function isChecked(id) {\r\n            return jQuery('#' + id).is(\":checked\");\r\n        }\r\n\r\n        function generateBlocks(radius, middle) {\r\n            var radiusSq = radius * radius;\r\n            var halfSize, size, offset;\r\n\r\n            if (middle) {\r\n                size = (2 * Math.ceil(radius)) + 1;\r\n                offset = Math.floor(size \/ 2);\r\n            } else {\r\n                halfSize = Math.ceil(radius) + 1;\r\n                size = halfSize * 2;\r\n                offset = halfSize - 0.5;\r\n            }\r\n\r\n            function isFull(x, y, z) {\r\n                x -= offset;\r\n                y -= offset;\r\n                z -= offset;\r\n                x *= x;\r\n                y *= y;\r\n                z *= z;\r\n\r\n                return x + y + z < radiusSq;\r\n            }\r\n\r\n            var blocks = [];\r\n\r\n            for (var z = 0; z < size; z++) {\r\n                var slice = blocks[z] = [];\r\n\r\n                for (var x = 0; x < size; x++) {\r\n                    var row = slice[x] = [];\r\n\r\n                    for (var y = 0; y < size; y++) {\r\n                        row[y] = isFull(x, y, z);\r\n                    }\r\n                }\r\n            }\r\n\r\n            return blocks;\r\n        }\r\n\r\n        function purgeBlocks(blocks) {\r\n            var newblocks = [];\r\n\r\n            for (var z = 0; z < blocks.length; z++) {\r\n                var slice = blocks[z];\r\n                var newslice = newblocks[z] = [];\r\n\r\n                for (var x = 0; x < slice.length; x++) {\r\n                    var row = slice[x];\r\n                    var newrow = newslice[x] = [];\r\n\r\n                    for (var y = 0; y < row.length; y++) {\r\n                        newrow[y] = row[y] && (!row[y - 1] || !row[y + 1] || !slice[x - 1][y] || !slice[x + 1][y] || !blocks[z - 1][x][y] || !blocks[z + 1][x][y]);\r\n                    }\r\n                }\r\n            }\r\n\r\n            return newblocks;\r\n        }\r\n\r\n        function printBlocks(blocks, hints) {\r\n            var x, y, z;\r\n            var table, tbody, tr, td, prev, divNeeded, needed = 0;\r\n            var output = jQuery('#output');\r\n\r\n            output.empty();\r\n\r\n            output.append(divNeeded = jQuery('<p>'));\r\n            \/\/output.append($('<div>'));\r\n            var prevslice = blocks[0];\r\n            for (z = 1; z < blocks.length - 1; z++) {\r\n                var slice = blocks[z];\r\n                output.append(table = jQuery('<table>'));\r\n                \/\/output.append($('<div>'));\r\n                table.append(tbody = jQuery('<tbody>'));\r\n\r\n                table.attr('border', 1);\r\n                table.attr('cellpadding', 0);\r\n                table.attr('cellspacing', 0);\r\n\r\n                for (x = 0; x < slice.length; x++) {\r\n                    var row = slice[x];\r\n                    tbody.append(tr = jQuery('<tr>'));\r\n\r\n                    for (y = 0; y < row.length; y++) {\r\n                        tr.append(td = jQuery('<td>'));\r\n                        prev = hints && prevslice[x][y];\r\n\r\n                        if (row[y]) {\r\n                            td.attr('class', prev ? 'prev_full' : 'full');\r\n                            needed++;\r\n                        } else {\r\n                            td.attr('class', prev ? 'prev_empty' : 'empty');\r\n                        }\r\n\r\n                        td.append(jQuery('<div>'));\r\n                    }\r\n                }\r\n\r\n                prevslice = slice;\r\n            }\r\n\r\n            jQuery(\"#blocks-out\").append(\"Blocks needed: \" + needed);\r\n        }\r\n    <\/script>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Minecraft Sphere<\/h2>\n\n\n\n<p>\u05d1\u05de\u05e9\u05d7\u05e7\u05d9\u05dd \u05d4\u05db\u05d5\u05dc\u05dc\u05d9\u05dd Minecraft, \u05db\u05d3\u05d5\u05e8\u05d9\u05dd \u05de\u05e9\u05de\u05e9\u05d9\u05dd \u05dc\u05d1\u05e0\u05d9\u05d9\u05d4. \u05db\u05e9\u05d0\u05ea\u05d4 \u05d1\u05d5\u05e0\u05d4 \u05de\u05e9\u05d4\u05d5 \u05d1\u05e2\u05d5\u05dc\u05dd \u05d4\u05d5\u05d5\u05d9\u05e8\u05d8\u05d5\u05d0\u05dc\u05d9 \u05e9\u05dc Minecraft, \u05d0\u05ea\u05d4 \u05e2\u05e9\u05d5\u05d9 \u05dc\u05d4\u05e4\u05d2\u05d9\u05df \u05d0\u05ea \u05d4\u05de\u05d5\u05de\u05d7\u05d9\u05d5\u05ea \u05e9\u05dc\u05da \u05d5\u05dc\u05d7\u05e1\u05d5\u05da \u05d4\u05de\u05d5\u05df \u05d6\u05de\u05df \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05de\u05d7\u05d5\u05dc\u05dc \u05d4\u05db\u05d3\u05d5\u05e8\u05d9\u05dd \u05e9\u05dc Minecraft.<\/p>\n\n\n\n<p>\u05d0\u05dd \u05d0\u05ea\u05d4 \u05e8\u05d5\u05e6\u05d4 \u05dc\u05e9\u05d7\u05e7 Minecraft \u05e2\u05dd \u05e2\u05e7\u05d5\u05de\u05d5\u05ea, \u05ea\u05e6\u05d8\u05e8\u05da \u05dc\u05d4\u05ea\u05d0\u05de\u05df \u05d4\u05e8\u05d1\u05d4 \u05db\u05d3\u05d9 \u05dc\u05d4\u05e9\u05d9\u05d2 \u05d0\u05ea \u05d4\u05d4\u05d8\u05d1\u05d5\u05ea \u05e9\u05dc \u05d4\u05e8\u05de\u05d4 \u05d4\u05d1\u05d0\u05d4.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Minecraft Sphere Maker<\/h2>\n\n\n\n<p>\u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d3\u05d5\u05e8\u05d9 Minecraft \u05de\u05e9\u05de\u05e9 \u05dc\u05d9\u05e6\u05d9\u05e8\u05ea \u05de\u05d1\u05e0\u05d9 \u05db\u05d3\u05d5\u05e8. \u05db\u05dc\u05d9 \u05d4\u05de\u05e6\u05d0\u05ea\u05d9 \u05d6\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05e9\u05de\u05e9 \u05d0\u05ea \u05de\u05d9 \u05e9\u05d9\u05e9 \u05dc\u05d5 \u05ea\u05e9\u05d5\u05e7\u05d4 \u05dc\u05d1\u05e0\u05d5\u05ea \u05d5\u05dc\u05d4\u05e7\u05d9\u05dd \u05d3\u05d1\u05e8\u05d9\u05dd. \u05ea\u05d5\u05db\u05e0\u05d9\u05ea \u05d6\u05d5, \u05e9\u05d4\u05d9\u05d0 \u05de\u05d1\u05d5\u05e1\u05e1\u05ea \u05d1\u05dc\u05d5\u05e7, \u05de\u05d0\u05e4\u05e9\u05e8\u05ea \u05dc\u05da \u05dc\u05d9\u05e6\u05d5\u05e8 \u05db\u05dc \u05e2\u05d9\u05e6\u05d5\u05d1 \u05db\u05d3\u05d5\u05e8 \u05dc\u05e4\u05d9 \u05d1\u05d7\u05d9\u05e8\u05ea\u05da<\/p>\n\n\n\n<p>\u05d4\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d1\u05db\u05dc\u05d9 \u05d6\u05d4 \u05e9\u05d5\u05dc\u05d8\u05d9\u05dd \u05d1\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05d5\u05de\u05e2\u05e0\u05d9\u05e7\u05d9\u05dd \u05dc\u05e2\u05d9\u05e6\u05d5\u05d1\u05d9\u05dd \u05e9\u05dc\u05d4\u05dd \u05de\u05e8\u05d0\u05d4 \u05d9\u05e6\u05d9\u05e8\u05ea\u05d9. \u05d1\u05db\u05da \u05e9\u05d4\u05d5\u05d0 \u05e0\u05d5\u05ea\u05df \u05dc\u05da \u05d0\u05ea \u05d4\u05e8\u05e2\u05d9\u05d5\u05df \u05d4\u05d9\u05db\u05df \u05dc\u05e9\u05d9\u05dd \u05d0\u05ea \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd, \u05d9\u05e6\u05e8\u05e0\u05d9\u05ea \u05d4\u05db\u05d3\u05d5\u05e8\u05d9\u05dd Minecraft \u05de\u05e4\u05e9\u05d8\u05ea \u05d0\u05ea \u05d4\u05de\u05e9\u05d9\u05de\u05d4 \u05d5\u05d7\u05d5\u05e1\u05db\u05ea \u05dc\u05da \u05d6\u05de\u05df. \u05e2\u05dc \u05d9\u05d3\u05d9 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05e4\u05d9\u05e7\u05e1\u05dc\u05d9\u05dd, \u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05e4\u05d2\u05d9\u05df \u05d1\u05d0\u05d5\u05e4\u05df \u05e9\u05d9\u05d8\u05ea\u05d9 \u05d0\u05ea \u05db\u05d5\u05e9\u05e8 \u05d4\u05d4\u05de\u05e6\u05d0\u05d4 \u05e9\u05dc\u05da.<\/p>\n\n\n\n<p>\u05d0\u05e0\u05d5 \u05de\u05d0\u05e4\u05e9\u05e8\u05d9\u05dd \u05dc\u05da \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05e1\u05da \u05db\u05d5\u05dc\u05d5 \u05db\u05d3\u05d9 \u05e9\u05ea\u05d5\u05db\u05dc \u05dc\u05e8\u05d0\u05d5\u05ea \u05d0\u05d5\u05ea\u05d5 \u05d1\u05e6\u05d5\u05e8\u05d4 \u05d1\u05e8\u05d5\u05e8\u05d4 \u05d9\u05d5\u05ea\u05e8. \u05d1\u05e2\u05d6\u05e8\u05ea \u05d4\u05db\u05dc\u05d9 \u05e9\u05dc\u05e0\u05d5, \u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05db\u05e2\u05ea \u05dc\u05d1\u05e0\u05d5\u05ea \u05d1\u05e6\u05d5\u05e8\u05d4 \u05de\u05d1\u05e8\u05d9\u05e7\u05d4 \u05db\u05d3\u05d5\u05e8\u05d9\u05dd \u05d5\u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d4\u05dd \u05d1\u05db\u05dc \u05de\u05e7\u05d5\u05dd \u05e9\u05ea\u05d1\u05d7\u05e8.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"500\" src=\"https:\/\/cpstesters.com\/wp-content\/uploads\/2022\/09\/Minecraft-Sphere-Generator.jpg\" alt=\"\u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d3\u05d5\u05e8 \u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8\" class=\"wp-image-558\" title=\"\" srcset=\"https:\/\/cpstesters.com\/wp-content\/uploads\/2022\/09\/Minecraft-Sphere-Generator.jpg 1000w, https:\/\/cpstesters.com\/wp-content\/uploads\/2022\/09\/Minecraft-Sphere-Generator-300x150.jpg 300w, https:\/\/cpstesters.com\/wp-content\/uploads\/2022\/09\/Minecraft-Sphere-Generator-768x384.jpg 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><figcaption class=\"wp-element-caption\">\u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d3\u05d5\u05e8 \u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8<\/figcaption><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">\u05db\u05d9\u05e6\u05d3 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1-Minecraft Sphere Generator<\/h2>\n\n\n\n<p>\u05d0\u05dd \u05d0\u05ea\u05d4 \u05de\u05e9\u05ea\u05de\u05e9 \u05d1\u05db\u05dc\u05d9 \u05d6\u05d4 \u05d1\u05e4\u05e2\u05dd \u05d4\u05e8\u05d0\u05e9\u05d5\u05e0\u05d4, \u05d4\u05d4\u05dc\u05d9\u05da \u05d9\u05d4\u05d9\u05d4 \u05e4\u05e9\u05d5\u05d8 \u05e2\u05d1\u05d5\u05e8\u05da. \u05dc\u05e0\u05d5\u05d7\u05d9\u05d5\u05ea\u05da, \u05d4\u05e2\u05dc\u05d9\u05e0\u05d5 \u05db\u05ea\u05d1\u05d4 \u05e2\u05dd \u05de\u05d9\u05d3\u05e2 \u05e9\u05ea\u05d5\u05db\u05dc \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d5 \u05d0\u05dd \u05ea\u05e8\u05e6\u05d4 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05db\u05d3\u05d5\u05e8 \u05d7\u05dc\u05d5\u05dc. \u05e2\u05dc\u05d9\u05da \u05dc\u05e6\u05d9\u05d9\u05ea \u05dc\u05d4\u05d5\u05e8\u05d0\u05d5\u05ea \u05d0\u05dc\u05d5.<\/p>\n\n\n\n<p>\u05db\u05dc\u05d9 \u05de\u05d7\u05d5\u05dc\u05dc \u05d4\u05db\u05d3\u05d5\u05e8\u05d9\u05dd \u05e9\u05dc Minecraft \u05d2\u05dc\u05d5\u05d9 \u05d1\u05e9\u05d5\u05e8\u05ea \u05d4\u05ea\u05e4\u05e8\u05d9\u05d8\u05d9\u05dd. \u05db\u05dc \u05e9\u05e2\u05dc\u05d9\u05da \u05dc\u05e2\u05e9\u05d5\u05ea \u05d4\u05d5\u05d0 \u05dc\u05d4\u05e7\u05d9\u05e9 \u05e2\u05dc\u05d9\u05d5, \u05d5\u05d4\u05e2\u05de\u05d5\u05d3 \u05d4\u05d1\u05d0 \u05d9\u05d5\u05e4\u05d9\u05e2 \u05e2\u05dc \u05d4\u05de\u05e1\u05da.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\u05e1\u05e4\u05e7 \u05d0\u05ea \u05d4\u05e8\u05d3\u05d9\u05d5\u05e1 \u05e9\u05dc \u05d4\u05e6\u05d5\u05e8\u05da \u05e9\u05dc\u05da \u05db\u05d3\u05d9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05ea \u05d4\u05db\u05d3\u05d5\u05e8 \u05e9\u05d0\u05ea\u05d4 \u05e6\u05e8\u05d9\u05da. \u05ea\u05d5\u05db\u05e0\u05d9\u05ea \u05d6\u05d5 \u05d9\u05d5\u05e6\u05e8\u05ea \u05db\u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc \u05de\u05d5\u05d3\u05dc \u05d1\u05e2\u05dc \u05e8\u05d3\u05d9\u05d5\u05e1 \u05e9\u05dc \u05e9\u05d9\u05e9\u05d4 \u05db\u05d0\u05e9\u05e8 \u05d4\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d4\u05de\u05d5\u05de\u05dc\u05e6\u05d5\u05ea \u05de\u05d5\u05e4\u05e2\u05dc\u05d5\u05ea.<\/li>\n\n\n\n<li>\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05dc\u05d7\u05e6\u05df \u05e8\u05de\u05d6 \u05db\u05d3\u05d9 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05e0\u05e7\u05d5\u05d3\u05d5\u05ea \u05d0\u05d3\u05d5\u05de\u05d5\u05ea \u05dc\u05d2\u05d1\u05d5\u05dc\u05d5\u05ea \u05dc\u05e0\u05d5\u05d7\u05d9\u05d5\u05ea\u05da \u05d0\u05dd \u05d0\u05ea\u05d4 \u05e8\u05d5\u05e6\u05d4 \u05db\u05d3\u05d5\u05e8 \u05de\u05dc\u05d0 \u05d1\u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8.<\/li>\n\n\n\n<li>\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d1\u05dc\u05d5\u05e7 \u05de\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05da \u05dc\u05d9\u05d9\u05e9\u05e8 \u05d0\u05ea \u05de\u05e1\u05e4\u05e8 \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd.<\/li>\n\n\n\n<li>\u05dc\u05d7\u05e5 \u05e2\u05dc \u05db\u05e4\u05ea\u05d5\u05e8 \u05d4\u05d9\u05e6\u05d9\u05e8\u05d4 \u05e4\u05e2\u05dd \u05e0\u05d5\u05e1\u05e4\u05ea \u05db\u05d3\u05d9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05ea \u05d8\u05d5\u05e4\u05e1 \u05d4\u05db\u05d3\u05d5\u05e8 \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e9\u05d1\u05d7\u05e8\u05ea \u05d6\u05d4 \u05e2\u05ea\u05d4.<\/li>\n\n\n\n<li>\u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05e8\u05d0\u05d5\u05ea \u05d0\u05ea \u05d4\u05de\u05e1\u05e4\u05e8 \u05de\u05ea\u05d7\u05ea \u05dc\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d4\u05d9\u05e6\u05d9\u05e8\u05d4 \u05d2\u05dd \u05db\u05df. \u05d6\u05d4\u05d5 \u05de\u05e1\u05e4\u05e8 \u05d4\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05d4\u05e0\u05d3\u05e8\u05e9\u05d9\u05dd \u05dc\u05d9\u05e6\u05d9\u05e8\u05ea \u05d4\u05db\u05d3\u05d5\u05e8 \u05d1\u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8.<\/li>\n\n\n\n<li>\u05d1\u05d4\u05ea\u05d0\u05dd \u05dc\u05d4\u05e2\u05d3\u05e4\u05ea\u05da, \u05ea\u05d5\u05db\u05dc \u05dc\u05d4\u05d7\u05dc\u05d9\u05d8 \u05d1\u05db\u05dc \u05e2\u05ea \u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d7\u05d6\u05d5\u05e8 \u05dc\u05ea\u05e4\u05e8\u05d9\u05d8 \u05d4\u05d3\u05d2\u05dd. \u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d3\u05e4\u05d3\u05e4\u05df \u05e9\u05dc\u05da \u05db\u05d3\u05d9 \u05dc\u05d7\u05d6\u05d5\u05e8 \u05d0\u05d7\u05d5\u05e8\u05d4.<\/li>\n\n\n\n<li>\u05d9\u05ea\u05e8 \u05e2\u05dc \u05db\u05df, \u05de\u05d7\u05d5\u05d5\u05df \u05d9\u05de\u05e0\u05d9 \u05db\u05dc\u05d5\u05dc, \u05db\u05e4\u05d9 \u05e9\u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05e8\u05d0\u05d5\u05ea. \u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d5 \u05db\u05d3\u05d9 \u05dc\u05d4\u05e6\u05d9\u05d2 \u05e9\u05db\u05d1\u05d4 \u05d0\u05d5\u05e4\u05e7\u05d9\u05ea \u05de\u05e1\u05d5\u05d9\u05de\u05ea \u05e9\u05dc \u05d4\u05d3\u05d2\u05dd \u05e9\u05dc\u05da. \u05e0\u05d9\u05ea\u05df \u05dc\u05d8\u05e4\u05dc \u05d2\u05dd \u05d1\u05e4\u05e8\u05e1\u05e4\u05e7\u05d8\u05d9\u05d1\u05d5\u05ea \u05d3\u05d5-\u05de\u05de\u05d3 \u05d5\u05d2\u05dd \u05d1\u05e4\u05e8\u05e1\u05e4\u05e7\u05d8\u05d9\u05d1\u05d4 \u05ea\u05dc\u05ea-\u05de\u05de\u05d3\u05d9\u05ea \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05d4\u05de\u05d7\u05d5\u05d5\u05df \u05d4\u05d9\u05de\u05e0\u05d9. \u05e2\u05d1\u05d5\u05e8 \u05de\u05d5\u05d3\u05dc \u05d4\u05ea\u05dc\u05ea \u05de\u05d9\u05de\u05d3 \u05d1\u05dc\u05d1\u05d3, \u05e9\u05db\u05d1\u05d4 \u05d6\u05d5 \u05ea\u05d5\u05d3\u05d2\u05e9 \u05d1\u05e6\u05d1\u05e2 \u05e6\u05d4\u05d5\u05d1 \u05e2\u05d6.<\/li>\n<\/ul>\n\n\n\n<p>\u05db\u05e2\u05ea \u05ea\u05d5\u05db\u05dc \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d1\u05e7\u05dc\u05d5\u05ea \u05d0\u05ea \u05d4\u05e2\u05d9\u05e6\u05d5\u05d1 \u05e9\u05dc\u05da \u05d5\u05dc\u05e9\u05dc\u05d1 \u05d0\u05d5\u05ea\u05d5 \u05d1\u05de\u05e9\u05d7\u05e7 \u05d4\u05db\u05d3\u05d5\u05e8\u05d9 \u05e9\u05dc Minecraft . \u05e2\u05dc \u05d9\u05d3\u05d9 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05db\u05dc\u05d9 \u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d3\u05d5\u05e8\u05d9 \u05d4\u05e4\u05d9\u05e7\u05e1\u05dc\u05d9\u05dd, \u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05d2\u05dc\u05d5\u05ea \u05e2\u05d5\u05d3 \u05e8\u05e2\u05d9\u05d5\u05e0\u05d5\u05ea \u05d9\u05d9\u05d7\u05d5\u05d3\u05d9\u05d9\u05dd \u05dc\u05d1\u05e0\u05d9\u05d9\u05d4.<\/p>\n\n\n\n<p class=\"has-text-align-center has-base-background-color has-background has-medium-font-size\"><em>\u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05d2\u05dd \u05dc\u05e0\u05e1\u05d5\u05ea \u05d0\u05ea <a href=\"https:\/\/cpstesters.com\/he\/?page_id=2848\" target=\"_blank\" rel=\"noreferrer noopener\">Minecraft Circle Generator<\/a> !<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05e9\u05dc \u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d9\u05e4\u05ea Minecraft<\/h2>\n\n\n\n<p>\u05de\u05d7\u05d5\u05dc\u05dc \u05d4\u05db\u05d3\u05d5\u05e8\u05d9\u05dd \u05e9\u05dc Minecraft \u05d4\u05d5\u05d0 \u05db\u05dc\u05d9 \u05e8\u05d1 \u05e2\u05d5\u05e6\u05de\u05d4 \u05e9\u05e0\u05d5\u05e6\u05e8 \u05db\u05d3\u05d9 \u05dc\u05e2\u05d6\u05d5\u05e8 \u05dc\u05e9\u05d7\u05e7\u05e0\u05d9\u05dd \u05dc\u05d9\u05e6\u05d5\u05e8 \u05db\u05d3\u05d5\u05e8\u05d9\u05dd \u05de\u05d3\u05d4\u05d9\u05de\u05d9\u05dd \u05d5\u05d0\u05d5\u05d1\u05d9\u05d9\u05e7\u05d8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd \u05d1\u05d4\u05e9\u05e8\u05d0\u05d4 \u05db\u05d3\u05d5\u05e8\u05d9\u05ea \u05db\u05de\u05d5 \u05db\u05d9\u05e4\u05d5\u05ea \u05e2\u05dc \u05d9\u05d3\u05d9 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05de\u05d7\u05d5\u05dc\u05dc \u05d4\u05db\u05d9\u05e4\u05d5\u05ea \u05e9\u05dc Minecraft \u05d5\u05d1\u05e0\u05d9\u05d9\u05ea \u05e6\u05de\u05e8\u05d5\u05ea, \u05de\u05d4 \u05e9\u05de\u05e8\u05d7\u05d9\u05d1 \u05d0\u05ea \u05d4\u05e4\u05d5\u05d8\u05e0\u05e6\u05d9\u05d0\u05dc \u05e9\u05dc \u05db\u05d3\u05d5\u05e8\u05d9 Minecraft.<\/p>\n\n\n\n<p>\u05dc\u05de\u05e8\u05d5\u05ea \u05e9\u05dc\u05ea\u05d5\u05db\u05e0\u05d9\u05ea \u05d6\u05d5 \u05d9\u05e9 \u05d4\u05de\u05d5\u05df \u05d9\u05db\u05d5\u05dc\u05d5\u05ea \u05de\u05e1\u05e7\u05e8\u05e0\u05d5\u05ea, \u05d0\u05e0\u05d5 \u05d4\u05d5\u05dc\u05db\u05d9\u05dd \u05dc\u05db\u05dc\u05d5\u05dc \u05d0\u05ea \u05db\u05dc \u05d4\u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05d4\u05e0\u05d7\u05d5\u05e6\u05d5\u05ea \u05dc\u05d1\u05e0\u05d9\u05d9\u05ea \u05db\u05d3\u05d5\u05e8\u05d9 Minecraft \u05db\u05d0\u05df:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\u05d1\u05e2\u05d6\u05e8\u05ea \u05d9\u05d5\u05e6\u05e8 \u05db\u05d3\u05d5\u05e8\u05d9\u05dd \u05d6\u05d4, \u05e0\u05d9\u05ea\u05df \u05dc\u05d9\u05d9\u05e6\u05e8 \u05e6\u05d5\u05e8\u05d5\u05ea \u05db\u05d3\u05d5\u05e8\u05d9\u05d5\u05ea \u05d1\u05e2\u05dc\u05d5\u05ea \u05d2\u05d3\u05dc\u05d9 \u05e8\u05d3\u05d9\u05d5\u05e1 \u05de\u05ea\u05db\u05d5\u05d5\u05e0\u05e0\u05d9\u05dd.<\/li>\n\n\n\n<li>\u05d4\u05db\u05dc\u05d9 \u05de\u05ea\u05d0\u05e8 \u05d1\u05d3\u05d9\u05d5\u05e7 \u05db\u05de\u05d4 \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05e0\u05d3\u05e8\u05e9\u05d9\u05dd \u05db\u05d3\u05d9 \u05dc\u05d1\u05e0\u05d5\u05ea \u05d0\u05ea \u05d4\u05db\u05d3\u05d5\u05e8 \u05d4\u05d0\u05d9\u05d3\u05d9\u05d0\u05dc\u05d9 \u05e9\u05dc\u05da \u05d1\u05de\u05e9\u05d7\u05e7 Minecraft.<\/li>\n\n\n\n<li>\u05d9\u05e9 \u05dc\u05da \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05d9\u05e6\u05d5\u05e8 \u05e9\u05e0\u05d9 \u05e2\u05d9\u05e6\u05d5\u05d1\u05d9 \u05db\u05d3\u05d5\u05e8 \u05e9\u05d5\u05e0\u05d9\u05dd, \u05d4\u05d0\u05d7\u05d3 \u05e2\u05dd \u05d1\u05dc\u05d5\u05e7\u05d9\u05dd \u05de\u05d9\u05d5\u05e9\u05e8\u05d9\u05dd \u05d5\u05d4\u05e9\u05e0\u05d9 \u05d1\u05dc\u05d9.<\/li>\n\n\n\n<li>\u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05d1\u05d7\u05d5\u05e8 \u05dc\u05e9\u05e8\u05d8\u05d8 \u05d0\u05ea \u05d4\u05db\u05d3\u05d5\u05e8 \u05d0\u05d5 \u05dc\u05d4\u05e9\u05d0\u05d9\u05e8 \u05d7\u05dc\u05dc \u05e8\u05d9\u05e7, \u05d1\u05d4\u05ea\u05d0\u05dd \u05dc\u05e8\u05e6\u05d5\u05e0\u05da.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">\u05e9\u05d0\u05dc\u05d5\u05ea \u05e0\u05e4\u05d5\u05e6\u05d5\u05ea<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>\u05de\u05d4\u05d9 \u05d4\u05e4\u05e7\u05d5\u05d3\u05d4 \u05d1\u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8 \u05e9\u05d9\u05d5\u05e6\u05e8\u05ea \u05db\u05d3\u05d5\u05e8 \u05de\u05dc\u05d0?<\/strong><\/h3>\n\n\n\n<p>\u05db\u05d3\u05d9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05de\u05e2\u05d2\u05dc \u05de\u05dc\u05d0 \u05dc\u05dc\u05d0 \u05de\u05d0\u05de\u05e5 \u05d1\u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8, \u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e4\u05e7\u05d5\u05d3\u05d4 \u05d4\u05d1\u05d0\u05d4: <strong>\u05db\u05d3\u05d9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05db\u05d3\u05d5\u05e8 \u05de\u05dc\u05d0, \u05d4\u05e7\u05dc\u05d3 \/sphere<\/strong> .<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>\u05de\u05d9 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05d7\u05d5\u05dc\u05dc \u05d4\u05db\u05d3\u05d5\u05e8\u05d9\u05dd \u05e9\u05dc Minecraft?<\/strong><\/h3>\n\n\n\n<p>\u05db\u05dc\u05d9 \u05d6\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05e9\u05de\u05e9 \u05d1\u05e2\u05dc\u05d9 \u05db\u05d9\u05e9\u05d5\u05e8\u05d9 \u05d1\u05e0\u05d9\u05d9\u05d4. \u05d8\u05db\u05e0\u05d9\u05e7\u05d4 \u05d6\u05d5 \u05de\u05e9\u05de\u05e9\u05ea \u05d2\u05dd \u05de\u05d9 \u05e9\u05d7\u05e1\u05e8 \u05db\u05dc \u05e0\u05d9\u05e1\u05d9\u05d5\u05df \u05d4\u05e7\u05e9\u05d5\u05e8 \u05dc\u05d1\u05e0\u05d9\u05d9\u05d4 \u05db\u05d3\u05d9 \u05dc\u05d4\u05d2\u05d1\u05d9\u05e8 \u05d0\u05ea \u05e8\u05de\u05ea \u05d4\u05d9\u05e6\u05d9\u05e8\u05ea\u05d9\u05d5\u05ea \u05e9\u05dc\u05d4\u05dd. \u05db\u05dc\u05d9 \u05d6\u05d4 \u05de\u05d0\u05e4\u05e9\u05e8 \u05dc\u05d9\u05dc\u05d3\u05d9\u05dd \u05dc\u05d4\u05ea\u05e0\u05e1\u05d5\u05ea \u05d1\u05e4\u05e8\u05d9\u05e1\u05d5\u05ea \u05e9\u05d5\u05e0\u05d5\u05ea \u05de\u05d1\u05d5\u05e1\u05e1\u05d5\u05ea \u05d1\u05dc\u05d5\u05e7. \u05e9\u05d7\u05e7\u05e0\u05d9 \u05de\u05e9\u05d7\u05e7 \u05d4\u05d5\u05d5\u05d9\u05d3\u05d0\u05d5 Minecraft \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d1\u05db\u05dc\u05d9 \u05d6\u05d4 \u05dc\u05e2\u05d9\u05e6\u05d5\u05d1 \u05de\u05d1\u05e0\u05d9\u05dd.<\/p>\n\n\n\n<p>\u05db\u05dc\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd \u05e9\u05dc Minecraft:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/cpstesters.com\/he\/?page_id=2994\" target=\"_blank\" rel=\"noreferrer noopener\">\u05de\u05d7\u05d5\u05dc\u05dc \u05d4\u05e4\u05d5\u05e0\u05d8\u05d9\u05dd \u05e9\u05dc Minecraft<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cpstesters.com\/he\/minecraft-title-generator-%d7%94%d7%a4%d7%95%d7%9a-%d7%90%d7%aa-%d7%94%d7%9b%d7%95%d7%aa%d7%a8-%d7%94%d7%98%d7%95%d7%91-%d7%91%d7%99%d7%95%d7%aa%d7%a8\/\" target=\"_blank\" rel=\"noreferrer noopener\">\u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d5\u05ea\u05e8\u05d5\u05ea \u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cpstesters.com\/he\/?page_id=2990\" target=\"_blank\" rel=\"noreferrer noopener\">\u05de\u05d7\u05d5\u05dc\u05dc \u05d4\u05e4\u05e7\u05d5\u05d3\u05d5\u05ea \u05e9\u05dc Minecraft<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cpstesters.com\/he\/?page_id=2664\" target=\"_blank\" rel=\"noreferrer noopener\">\u05de\u05d0\u05de\u05df \u05d4\u05de\u05d8\u05e8\u05d4<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cpstesters.com\/he\/%d7%9e%d7%91%d7%97%d7%9f-apm-%d7%9e%d7%a2%d7%a7%d7%91-%d7%90%d7%97%d7%a8-%d7%a4%d7%a2%d7%95%d7%9c%d7%95%d7%aa-%d7%9c%d7%93%d7%a7%d7%94-%d7%9c%d7%92%d7%99%d7%99%d7%9e%d7%99%d7%a0%d7%92\/\" target=\"_blank\" rel=\"noreferrer noopener\">\u05de\u05d1\u05d7\u05df APM<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Minecraft Sphere Generator \u05d4\u05d5\u05d0 \u05db\u05dc\u05d9 \u05d4\u05de\u05e9\u05de\u05e9 \u05dc\u05d9\u05d9\u05e6\u05d5\u05e8 \u05db\u05d3\u05d5\u05e8\u05d9 \u05db\u05d9\u05e4\u05d4 \u05d5\u05e4\u05d9\u05e7\u05e1\u05dc\u05d9\u05dd \u05db\u05d3\u05d9 \u05dc\u05d4\u05e8\u05d7\u05d9\u05d1 \u05d0\u05ea \u05e0\u05d5\u05e4\u05d9 Minecraft, \u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05d6\u05d4 \u05e2\u05db\u05e9\u05d9\u05d5! Minecraft Sphere \u05d1\u05de\u05e9\u05d7\u05e7\u05d9\u05dd \u05d4\u05db\u05d5\u05dc\u05dc\u05d9\u05dd Minecraft, \u05db\u05d3\u05d5\u05e8\u05d9\u05dd &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"\u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d3\u05d5\u05e8 \u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8 | \u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d9\u05e4\u05ea \u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8\" class=\"read-more button\" href=\"https:\/\/cpstesters.com\/he\/minecraft-sphere-generator\/#more-2989\" aria-label=\"Read more about \u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d3\u05d5\u05e8 \u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8 | \u05de\u05d7\u05d5\u05dc\u05dc \u05db\u05d9\u05e4\u05ea \u05de\u05d9\u05d9\u05e0\u05e7\u05e8\u05d0\u05e4\u05d8\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":1509,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2989","page","type-page","status-publish","has-post-thumbnail"],"_links":{"self":[{"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/pages\/2989","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/comments?post=2989"}],"version-history":[{"count":4,"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/pages\/2989\/revisions"}],"predecessor-version":[{"id":5926,"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/pages\/2989\/revisions\/5926"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/media\/1509"}],"wp:attachment":[{"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/media?parent=2989"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}