{"id":15999,"date":"2025-05-03T10:35:09","date_gmt":"2025-05-03T01:35:09","guid":{"rendered":"http:\/\/www.gisdeveloper.co.kr\/?p=15999"},"modified":"2025-05-03T10:38:48","modified_gmt":"2025-05-03T01:38:48","slug":"mandelbrot-fractal","status":"publish","type":"post","link":"http:\/\/www.gisdeveloper.co.kr\/?p=15999","title":{"rendered":"Mandelbrot Fractal"},"content":{"rendered":"<p>x\ucd95\uc740 \uc2e4\uc218\ubd80, y\ucd95\uc744 \ud5c8\uc218\ub85c \uc0dd\uac01\ud558\ub294 \uacf5\uac04(\ubcf5\uc18c\uc218\ud3c9\uba74)\uc5d0\uc11c\uc758 \uc6d0\uc810\uc5d0\uc11c \uc77c\uc815\ud55c offset \uac12\ub9cc\ud07c \uc774\ub3d9\ud558\uc5ec \uc81c\uacf1\ud55c \uac12\uc5d0 \ub300\ud55c \uc2e4\uc218\ubd80\uc640 \ud5c8\uc218\ub97c \uac01\uac01 x, y\ucd95\uc73c\ub85c \uc0bc\uc544 \ud53d\uc140\uac12\uc73c\ub85c \uc2dc\uac01\ud654\ud55c \uacb0\uacfc\uac00 Mandelbrot Fractal\uc774\uba70 \uad6c\ud604 \ucf54\ub4dc\uc640 \uadf8\uc5d0 \ub300\ud55c \uacb0\uacfc\ub294 \uc544\ub798\uc640 \uac19\ub2e4.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"glsl\">\r\nuniform vec3 uResolution;\r\nuniform float uTime;\r\nuniform vec4 uMouse;\r\n\r\nvoid main() {\r\n  vec2 uv = (gl_FragCoord.xy - .5 * uResolution.xy) \/ uResolution.y;\r\n  uv += vec2(0.08, 0.15);\r\n  vec2 c = uv * 2.5 + vec2(-.69955, -.37999); \/\/ Offset\r\n  vec2 z = vec2(0.);\r\n  float iter = 0.;\r\n  float max_iter = 60.;\r\n\r\n  float h = 2. + sin(uTime);\r\n  for(float i=0.; i&lt;max_iter; i++) {\r\n    z = vec2(\r\n      z.x * z.x - z.y * z.y, \/\/ \uc2e4\uc218\ubd80\r\n      2. * z.x * z.y \/\/ \ud5c8\uc218\ubd80\r\n    ) + c;\r\n    if(length(z) > 2.) break;\r\n\r\n    iter++;\r\n  }\r\n\r\n  float f = iter \/ max_iter;\r\n  f = pow(f, .75);\r\n  vec3 col = vec3(f);\r\n\r\n  gl_FragColor = vec4(col, 1.0);\r\n}\r\n<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/www.gisdeveloper.co.kr\/wp-content\/uploads\/2025\/05\/\u1109\u1173\u110f\u1173\u1105\u1175\u11ab\u1109\u1163\u11ba-2025-05-03-10.32.04.png\" alt=\"\" width=\"1770\" height=\"1580\" class=\"aligncenter size-full wp-image-16000\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>x\ucd95\uc740 \uc2e4\uc218\ubd80, y\ucd95\uc744 \ud5c8\uc218\ub85c \uc0dd\uac01\ud558\ub294 \uacf5\uac04(\ubcf5\uc18c\uc218\ud3c9\uba74)\uc5d0\uc11c\uc758 \uc6d0\uc810\uc5d0\uc11c \uc77c\uc815\ud55c offset \uac12\ub9cc\ud07c \uc774\ub3d9\ud558\uc5ec \uc81c\uacf1\ud55c \uac12\uc5d0 \ub300\ud55c \uc2e4\uc218\ubd80\uc640 \ud5c8\uc218\ub97c \uac01\uac01 x, y\ucd95\uc73c\ub85c \uc0bc\uc544 \ud53d\uc140\uac12\uc73c\ub85c \uc2dc\uac01\ud654\ud55c \uacb0\uacfc\uac00 Mandelbrot Fractal\uc774\uba70 \uad6c\ud604 \ucf54\ub4dc\uc640 \uadf8\uc5d0 \ub300\ud55c \uacb0\uacfc\ub294 \uc544\ub798\uc640 \uac19\ub2e4. uniform vec3 uResolution; uniform float uTime; uniform vec4 uMouse; void main() { vec2 uv = (gl_FragCoord.xy &#8211; .5 * uResolution.xy) \/ uResolution.y; uv &hellip; <\/p>\n<p class=\"link-more\"><a href=\"http:\/\/www.gisdeveloper.co.kr\/?p=15999\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Mandelbrot Fractal&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[153],"tags":[],"class_list":["post-15999","post","type-post","status-publish","format-standard","hentry","category-shader"],"_links":{"self":[{"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/15999","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=15999"}],"version-history":[{"count":5,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/15999\/revisions"}],"predecessor-version":[{"id":16004,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/15999\/revisions\/16004"}],"wp:attachment":[{"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=15999"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=15999"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=15999"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}