Skip to content

Commit

Permalink
Add Sketch201212
Browse files Browse the repository at this point in the history
  • Loading branch information
keijiro committed Dec 12, 2020
1 parent d1785e2 commit fa37c89
Show file tree
Hide file tree
Showing 13 changed files with 7,414 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Assets/Sketch201212.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions Assets/Sketch201212/ClassicNoise2D.hlsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include "Packages/jp.keijiro.noiseshader/Shader/ClassicNoise2D.hlsl"

void ClassicNoise_float(float2 p, out float n)
{
n = cnoise(p);
}

void PeriodicNoise_float(float2 p, float2 rep, out float n)
{
n = pnoise(p, rep);
}
10 changes: 10 additions & 0 deletions Assets/Sketch201212/ClassicNoise2D.hlsl.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fa37c89

Please sign in to comment.