Skip to content

Instantly share code, notes, and snippets.

@senthilsivanath
Created November 4, 2016 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save senthilsivanath/389f425072a8134cc5f88dc9505c2391 to your computer and use it in GitHub Desktop.
Save senthilsivanath/389f425072a8134cc5f88dc9505c2391 to your computer and use it in GitHub Desktop.
My Gist
using System;
using JSIL;
using JSIL.Meta;
public static class Program {
public static int x = 10;
public static int y = 20;
public static void Main () {
dynamic document = Builtins.Global["document"];
dynamic window = Builtins.Global["window"];
var canvas = document.createElement("canvas");
var ctx = canvas.getContext("2d");
var body = document.getElementsByTagName("body")[0];
Console.WriteLine("Hello JSIL World!");
body.appendChild(canvas);
window.setInterval((Action)(() => {
Redraw(ctx);
}), 25);
}
public static void Redraw (dynamic ctx) {
x += 2;
ctx.clearRect(0, 0, 300, 300);
ctx.fillStyle = "red";
ctx.fillRect(x, y, 20, 20);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment