home.social

#graphics — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #graphics, aggregated by home.social.

  1. Did you notice the look of Unreal 6 in the Rocket League trailer? I'm pretty sure we're looking at UE6 rending in real-time path tracing mode, not regular Lumen.

    Let me tell you why I believe so, and go over how this new version of the popular game engine will affect the gaming industry

    youtube.com/watch?v=B0z6EguPu-M

    #ue6 #unreal6 #unrealEngine #pathTracing #rayTracing #lumen #graphics #gaming #gameDev #rocketLeague #fortnite #ps6 #xboxHelix #rtx #videos

  2. Here's me showing off some #graphics, from my 20 years in #JavaScript #development: marquisdegeek.com/pub/html5/dr With per-pixel
    manipulation, it's fairly easy to create a #2D morphing effect. #vfx #sgx

  3. my stupid commissions graphics. probably the last one i'll make in a while since i basically retired from advertising. if you see this, please consider commissioning me!

    #commissions #commissionsopen #commissionsad #commission #graphics #art #digimon #pokemon #neopets

  4. An exercise in re-creating, as vector graphics, Columbia Records brand #graphics from the 1950s and 1960s.

    #midcentury #vinyl #graphicdesign

  5. An exercise in re-creating, as vector graphics, Columbia Records brand #graphics from the 1950s and 1960s.

    #midcentury #vinyl #graphicdesign

  6. An exercise in re-creating, as vector graphics, Columbia Records brand #graphics from the 1950s and 1960s.

    #midcentury #vinyl #graphicdesign

  7. An exercise in re-creating, as vector graphics, Columbia Records brand #graphics from the 1950s and 1960s.

    #midcentury #vinyl #graphicdesign

  8. An exercise in re-creating, as vector graphics, Columbia Records brand #graphics from the 1950s and 1960s.

    #midcentury #vinyl #graphicdesign

  9. Fun fact: Fractals like this Sierpiński triangle can be generated using very little code, enough to fit in a single 1024 character Mastodon post. Copying the following HTML into a text file and opening it in your browser will create a canvas that renders this image.

    <canvas id="canvas" width="720" height="720"></canvas>
    <script>
    const ctx = canvas.getContext("2d");
    ctx.fillStyle = "#000000";
    ctx.fillRect(0, 0, canvas.width, canvas.height);
    ctx.fillStyle = "#ffffff";
    let x = 0.5, y = 0;
    for (let i = 0; i < 100000; i++) {
    const r = Math.random() * 3;
    if (r < 1) {
    x = (x + 0.5) / 2;
    y /= 2;
    } else if (r < 2) {
    x /= 2;
    y = (y + 1) / 2;
    } else {
    x = (x + 1) / 2;
    y = (y + 1) / 2;
    }
    ctx.fillRect(x * canvas.width, y * canvas.height, 1, 1);
    }
    </script>

    #fractal #programming #graphics

  10. yo linux users whats the best image editing software for recoloring gifs and adding animated effects like scanlines/glitch… gimp is not the one… i will accept web apps but want to avoid AI


    #linux #image-editing #gif-making #graphics #editing #whatever
  11. We used to have software that let you use fill in between lines, and add some text here and there, without having to download full artist suites like Krita (very impressive though). But they seem to be gone. Anyone tips? I just need to fill these circles with different colors and add a letter, that's all. Microshit wants me to log in when "opening in designer", and fuck that.

    #AskFedi #graphics #imageEditing #editing #FreeSoftware

  12. We used to have software that let you use fill in between lines, and add some text here and there, without having to download full artist suites like Krita (very impressive though). But they seem to be gone. Anyone tips? I just need to fill these circles with different colors and add a letter, that's all. Microshit wants me to log in when "opening in designer", and fuck that.