40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Matrix_App.PregeneratedMods
|
|
{
|
|
public sealed class Spiral : MatrixGifGenerator
|
|
{
|
|
/**
|
|
float spiral(vec2 m) {
|
|
float r = length(m);
|
|
float a = atan(m.y, m.x);
|
|
float v = sin(100.*(sqrt(r)-0.02*a-.3*t));
|
|
return clamp(v,0.,1.);
|
|
}
|
|
*/
|
|
private static float SpiralCurve(float s, float t, float time)
|
|
{
|
|
var r = MathF.Sqrt(s * s + t * t);
|
|
var a = MathF.Atan2(t, s);
|
|
var v = MathF.Sin(50 * (MathF.Sqrt(r) - 0.02f * a - time));
|
|
|
|
return v;
|
|
}
|
|
|
|
protected override void ColorFragment(in int x, in int y, in float u, in float v, in int frame, out float r, out float g, out float b)
|
|
{
|
|
var sp = SpiralCurve((u - 0.5f) * 0.1f, (v - 0.5f) * 0.1f, frame / (float) totalFrames);
|
|
|
|
r = sp;
|
|
g = sp;
|
|
b = sp;
|
|
}
|
|
|
|
protected override void CreateUi(FlowLayoutPanel anchor, update invokeGenerator)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|