• ClipSaver
ClipSaver
Русские видео
  • Смешные видео
  • Приколы
  • Обзоры
  • Новости
  • Тесты
  • Спорт
  • Любовь
  • Музыка
  • Разное
Сейчас в тренде
  • Фейгин лайф
  • Три кота
  • Самвел адамян
  • А4 ютуб
  • скачать бит
  • гитара с нуля
Иностранные видео
  • Funny Babies
  • Funny Sports
  • Funny Animals
  • Funny Pranks
  • Funny Magic
  • Funny Vines
  • Funny Virals
  • Funny K-Pop

#7 Amazing Morphing Wave Functions: Sine, Grid, 3D, Perspective, Rotate скачать в хорошем качестве

#7 Amazing Morphing Wave Functions: Sine, Grid, 3D, Perspective, Rotate 9 months ago

gamedev

monogame

indie

development

graphics

engine

xona

firstpixel

pixel

pixelart

retro

coding

wolf3d

raycast

raycasting

software

custom

shader

Не удается загрузить Youtube-плеер. Проверьте блокировку Youtube в вашей сети.
Повторяем попытку...
#7 Amazing Morphing Wave Functions: Sine, Grid, 3D, Perspective, Rotate
  • Поделиться ВК
  • Поделиться в ОК
  •  
  •  


Скачать видео с ютуб по ссылке или смотреть без блокировок на сайте: #7 Amazing Morphing Wave Functions: Sine, Grid, 3D, Perspective, Rotate в качестве 4k

У нас вы можете посмотреть бесплатно #7 Amazing Morphing Wave Functions: Sine, Grid, 3D, Perspective, Rotate или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:

  • Информация по загрузке:

Скачать mp3 с ютуба отдельным файлом. Бесплатный рингтон #7 Amazing Morphing Wave Functions: Sine, Grid, 3D, Perspective, Rotate в формате MP3:


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса ClipSaver.ru



#7 Amazing Morphing Wave Functions: Sine, Grid, 3D, Perspective, Rotate

August 3, 2024. This video showcases the same equations as the prior, except the result is not rendered as a graph where the solution is zero. Instead, the actual result is converted into a prismatic color spectrum approximately covering all values from -1 to +1, where it fades to black beyond that range. While it's harder to see the beauty in the equation solutions, it does show a nice color gradient of possible values, and has some nice transitions. Although, if I were to solely showcase the color gamut, I would have chosen different equations. In this case, it's nice to compare against the original video to see the differences and similarities. I added a few more intro and outro equations in the mix, including the classic y = x equation to showcase the basics of the rainbow optical spectrum, from which to understand the rest. The color mapping I used is taken from Ken Silverman's EvalDraw program: R = exp((v - 0.75)^2 * -8) G = exp((v - 0.50)^2 * -8) B = exp((v - 0.25)^2 * -8) It makes for a nice smooth flow of colors since the changes in R, G, and B are not abrupt and linear like they are in the classic color wheel, or when converting HSV to RGB. I have similar examples in a ShaderToy demo: https://shadertoy.com/view/4dVXWW Showcases: --------------------- smooth transition equation morphing 3D formulas rotation, via the xrot() and yrot() functions, which are simply the 2D rotation matrix: xrot(x, y, t) = x * sin(t) + y * cos(t) yrot(x, y, t) = x * cos(t) - y * sin(t) T animation speed adjustment Equations: ------------------- (In order, and grouped by category / pattern) intro y - x y - pow(x, 2) (y*y+x*x - 2) y - x patterns that eventually make a grid (sin(y * x) * cos(x * y)) - (cos(y - x) * sin(x - y)) (sin(y * x * x) * cos(x * y * y)) - (cos(y - x) * sin(x - y)) (sin(y * x * x + t) * cos(x * y * y - t)) - (cos(y - x + t) * sin(x - y - t)) (sin(y * x / t) * cos(x * y / t)) - (cos(y - x * t) * sin(x - y * t)) pixelated circle y*y + x*x - t (y - sin(y * t)) * (y + sin(y * t)) + (x - sin(x * t)) * (x + sin(x * t)) - t, void circles sin(x + y) + cos(y - x) - sin(x * y) sin(x + y + t) + cos(y - x + t) - sin(x * y) (sin(y * t * x) * cos(x * t * y)) - (cos(y - t) * sin(x - t)) wavy grid (sin(x + t) + cos(y - t)) - (sin(y - t) * cos(x + t)) (sin(x + t) + cos(y - t)) - (sin(y - t) * cos(x * t)) bubbly y - (sin(x * x) + cos(y * y) + sin(x * y) + cos(x * y)) y - (sin(x * x + t) + cos(y * y + t) + sin(x * y + t) + cos(x * y + t)) funky (cos(x) * y) - (sin(x + y * x) - y) (cos(x + t) * y) - (sin(x + y * x - t) - y) (cos(x+y) * (y-t)) - (sin((x-t) + (y-t) * (x-t)) - (y*t)) 2D grid sin(x) sin(y) sin(x) * sin(y) sin(xrot(x,y,t)) * sin(yrot(x,y,t)) 3D perspective sin(x * 5.0 / y) sin(5.0 / y) sin(x * 5.0 / y) * sin(5.0 / y) sin(x * 5.0 / y) * sin((5.0 / y) + t * 8.0) sin(xrot(x,y,t) * 5.0 / yrot(x,y,t)) * sin((5.0 / yrot(x,y,t)) + t * 8.0) sin(x * 5.0 / abs(y)) * sin((5.0 / abs(y)) + t * 8.0) sin(xrot(x,y,t) * 5.0 / abs(yrot(x,y,t))) * sin((5.0 / abs(yrot(x,y,t))) + t * 8.0) outro y - x (y*y+x*x - 2) y - pow(x, 2) y - x Hardware / Processing: --------------------------------------- Rendering is entirely on the CPU! No GPU used except to upload the already rendered software buffer. Alienware m18 R2 NVIDIA GeForce RTX 4090 16GB GDDR6 (laptop version) 14th Gen Intel Core i9 14900HX (24-Core, 36MB L3 Cache, up to 5.8GHz Max Turbo Frequency) (16 E-Cores, and 8 P-Cores hyperthreaded = 32 V-Cores total) 64 GB: 2 x 32 GB, DDR5, 5200 MT/s, non-ECC, dual-channel 18" FHD+ (1920 x 1200) 480Hz, 3ms, ComfortView Plus, NVIDIA G-SYNC + DDS, 100% DCI-P3, FHD IR Camera AlienFX RGB backlit Alienware CherryMX ultra low-profile mechanical keyboard 4 TB, M.2, PCIe NVMe, SSD Playlists: -------------- Xona System 8:    • Game Dev Engine #1. A New Beginning.   Voxel:    • Voxel Engine #8 - Correct Peripheral ...   Ray Cast:    • 3D Ray Casting Engine: #4 (Global Gam...   Graph-All:    • #1 Graph-All Equation Renderer - Mult...   Scroll Shmup:    • The First Pixel: Devlog #9 - Enemies,...   Road:    • Pseudo 3D Road #8 - infinite vegetati...   Arena Shmup:    • Arena Shmup Demo #3 - Object Pool Opt...   Wave Function:    • A.I. Texture Generation, High Res (Wa...   3D Polygon:    • 3D Polygon Engine #9 - Multiple Mater...   GW-BASIC:    • GW-BASIC - Escape From Monster Cavern...   Websites: --------------- GitHub: https://github.com/JDoucette Blog: http://thefirstpixel.com Studio: http://xona.com

Comments
  • #6 Amazing Morphing Equations: 3D Perspective, Grid, Rotate, Complex Sine 9 months ago
    #6 Amazing Morphing Equations: 3D Perspective, Grid, Rotate, Complex Sine
    Опубликовано: 9 months ago
    589
  • But why is a sphere's surface area four times its shadow? 6 years ago
    But why is a sphere's surface area four times its shadow?
    Опубликовано: 6 years ago
    8287688
  • Кто приехал к Путину на парад и как они могут навалять Европе (English subtitles) @Max_Katz 14 hours ago
    Кто приехал к Путину на парад и как они могут навалять Европе (English subtitles) @Max_Katz
    Опубликовано: 14 hours ago
    636859
  • Fire flying bright spark Background video | Footage | Screensaver 5 years ago
    Fire flying bright spark Background video | Footage | Screensaver
    Опубликовано: 5 years ago
    247308
  • Dreamy Room in Paris with Smooth Piano Jazz Music For Study, Work & Relaxation
    Dreamy Room in Paris with Smooth Piano Jazz Music For Study, Work & Relaxation
    Опубликовано:
    0
  • наше будущее – магазины без продуктов (что придумали сети) 18 hours ago
    наше будущее – магазины без продуктов (что придумали сети)
    Опубликовано: 18 hours ago
    152660
  • 🔴 LIVE: Avatar: The Last Airbender - Season Two Marathon ⛰ | Book 2: Earth | Avatar
    🔴 LIVE: Avatar: The Last Airbender - Season Two Marathon ⛰ | Book 2: Earth | Avatar
    Опубликовано:
    0
  • Why do prime numbers make these spirals? | Dirichlet’s theorem and pi approximations 5 years ago
    Why do prime numbers make these spirals? | Dirichlet’s theorem and pi approximations
    Опубликовано: 5 years ago
    6561537
  • I Survived 100 Hours In An Ancient Temple 10 hours ago
    I Survived 100 Hours In An Ancient Temple
    Опубликовано: 10 hours ago
    17092120
  • Pseudo 3D Road - VGA - Full Tilt - play-through, 2 crashes 1 year ago
    Pseudo 3D Road - VGA - Full Tilt - play-through, 2 crashes
    Опубликовано: 1 year ago
    864

Контактный email для правообладателей: [email protected] © 2017 - 2025

Отказ от ответственности - Disclaimer Правообладателям - DMCA Условия использования сайта - TOS