Skip to content

Instantly share code, notes, and snippets.

@vtastek
vtastek / atmosphere_clouds_rendering.md
Created November 18, 2023 10:49 — forked from 343234064/atmosphere_clouds_rendering.md
A collection of links to various materials on atmosphere / clouds rendering

Atmosphere / Clouds Rendering

Research papers

Atmosphere

  • A fast, simple method to render sky color using gradients maps [[Abad06]]
  • A Framework for the Experimental Comparison of Solar and Skydome Illumination [[Kider14]]
  • A Method for Modeling Clouds based on Atmospheric Fluid Dynamics [[Miyazaki01]]
  • A Physically-Based Night Sky Model [[Jensen01]]
@vtastek
vtastek / GLSL-Noise.md
Created February 20, 2022 02:03 — forked from patriciogonzalezvivo/GLSL-Noise.md
GLSL Noise Algorithms

Generic 1,2,3 Noise

float rand(float n){return fract(sin(n) * 43758.5453123);}

float noise(float p){
	float fl = floor(p);
  float fc = fract(p);
	return mix(rand(fl), rand(fl + 1.0), fc);
}
@vtastek
vtastek / index.html
Created July 28, 2020 13:12 — forked from sergiobarriel/index.html
Simple integration of Google Maps through Javascript (Requires jQuery)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Simple integration of Google Maps through Javascript</title>
<style media="screen">
html, body { font-family: monospace;}