Category Archives: JavaScript

MinimalCompsJS Preview

A while back, when I first started playing with HTML5 and Canvas, I considered the idea of making a port of MinimalComps. I immediately rejected the idea as silly. I mean, if you’re in HTML, you already have UI controls, … Continue reading

Posted in Components, JavaScript | 4 Comments

Linescapes Iteration 8

Create a LineScape object in LineScape08.js: [php lang=”JavaScript”]function LineScape(canvas) { this.context = canvas.getContext(“2d”); this.width = canvas.width; this.height = canvas.height; this.xcenter = this.width / 2; this.ycenter = this.height / 2; this.zcenter = 500; this.z = 5000; this.fl = 350; this.xres = … Continue reading

Posted in JavaScript | 4 Comments

Linescapes Iteration 7

Put back in a bit of randomness. A more interesting form. Draw progressively so screen doesn’t hang. [php lang=”JavaScript”]$(function() { var canvas, context, width, height, x, x1, x2, y, z = 5000, fl = 350, xres = 2, zres = … Continue reading

Posted in JavaScript | 5 Comments

Linescapes Iteration 6

Add a gety(x, z) function and a more interesting form. [php lang=”JavaScript”]$(function() { var canvas, context, width, height, x, x1, x2, y, z = 5000, fl = 350, xres = 5, zres = 5, xcenter, ycenter, zcenter, scale; canvas = … Continue reading

Posted in JavaScript | Leave a comment

Linescapes Iteration 5

Move horizon out. Stretch to edge of canvas. Fade lines in distance. Add a fill to cover previous lines. [php lang=”JavaScript”]$(function() { var canvas, context, width, height, x, x1, x2, y, z = 5000, fl = 350, xres = 5, … Continue reading

Posted in JavaScript | Leave a comment

Linescapes Iteration 4

Segmentize and randomize. [php lang=”JavaScript”]$(function() { var canvas, context, width, height, x, x1, x2, y, z = 600, fl = 350, xres = 5, zres = 5, xcenter, ycenter, scale; canvas = $(“#canvas”).get(0); context = canvas.getContext(“2d”); width = canvas.width; height … Continue reading

Posted in JavaScript | 3 Comments

Linescapes Iteration 3

Make it 3D. [php lang=”JavaScript”]$(function() { var canvas, context, width, height, x1, x2, y, z = 600, fl = 350, xcenter, ycenter, scale; canvas = $(“#canvas”).get(0); context = canvas.getContext(“2d”); width = canvas.width; height = canvas.height; xcenter = width / 2; … Continue reading

Posted in JavaScript | Leave a comment

Linescapes Iteration 2

Draw a bunch of lines. [php lang=”JavaScript”]$(function() { var canvas, context, width, height; canvas = $(“#canvas”).get(0); context = canvas.getContext(“2d”); width = canvas.width; height = canvas.height; for(var y = 0; y < height; y += 10) { context.beginPath(); context.moveTo(0, y); context.lineTo(width, … Continue reading

Posted in JavaScript | 8 Comments

Linescapes Iteration 1

Draw a line. [php lang=”JavaScript”]$(function() { var canvas, context, width, height; canvas = $(“#canvas”).get(0); context = canvas.getContext(“2d”); width = canvas.width; height = canvas.height; context.beginPath(); context.moveTo(0, height / 2); context.lineTo(width, height / 2); context.stroke(); });[/php] Result.

Posted in JavaScript | 4 Comments

Lissajous Webs

More JavaScript! I’ve actually started delving into Android, but I’m still tinkering with JS too. I’ve been fleshing out the Verlet System I created last month. Added some cool stuff to it. I’ll be doing a future post on that … Continue reading

Posted in JavaScript | 4 Comments