Created
November 20, 2012 20:42
-
-
Save jonaslund/4120941 to your computer and use it in GitHub Desktop.
A CodePen by AKM2. Painting - http://jsdo.it/akm2/zAOw
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="message">Drag mouse to paint.</div> | |
<canvas id='c'></canvas> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* requestAnimationFrame | |
*/ | |
window.requestAnimationFrame = (function(){ | |
return window.requestAnimationFrame || | |
window.webkitRequestAnimationFrame || | |
window.mozRequestAnimationFrame || | |
window.oRequestAnimationFrame || | |
window.msRequestAnimationFrame || | |
function (callback) { | |
window.setTimeout(callback, 1000 / 60); | |
}; | |
})(); | |
/** | |
* Brush | |
*/ | |
var Brush = (function() { | |
'use strict'; | |
/** | |
* @constructor | |
* @public | |
*/ | |
function Brush(x, y) { | |
this.x = x || 0; | |
this.y = y || 0; | |
this._tipReset(); | |
this._drops = []; | |
} | |
Brush.prototype = { | |
size: 35, | |
color: '#000', | |
inkAmount: 7, | |
splashing: true, | |
dripping: true, | |
_latestPos: null, | |
_strokeId: null, | |
isStroke: function() { | |
return Boolean(this._strokeId); | |
}, | |
startStroke: function() { | |
if (this.isStroke()) return; | |
this._tipReset(); | |
this._strokeId = new Date().getTime(); | |
}, | |
endStroke: function() { | |
this._strokeId = null; | |
this._latestPos = null; | |
}, | |
render: function(ctx, x, y) { | |
var tip = this._tip, | |
strokeId = this._strokeId, | |
dx, dy, dist, | |
i, len; | |
if (!this._latestPos) { | |
this._latestPos = { x: this.x, y: this.y }; | |
} else { | |
this._latestPos.x = this.x; | |
this._latestPos.y = this.y; | |
} | |
this.x = x; | |
this.y = y; | |
dx = this.x - this._latestPos.x; | |
dy = this.y - this._latestPos.y; | |
dist = Math.sqrt(dx * dx + dy * dy); | |
len = tip.length; | |
for (i = 0; i < len; i++) { | |
tip[i].update(dx, dy, dist); | |
} | |
if (this.isStroke()) { | |
for (i = 0; i < len; i++) { | |
tip[i].draw(ctx); | |
} | |
if (this.splashing && dist > 75) { | |
var maxNum = (dist - 75) * 0.5 | 0, | |
r, a, sx, sy; | |
ctx.save(); | |
for (i = 0, len = random(maxNum) | 0; i < len; i++) { | |
r = random(dist, 1); | |
a = random(Math.PI * 2); | |
sx = this.x + r * Math.sin(a); | |
sy = this.y + r * Math.cos(a); | |
dot(ctx, sx, sy, this.color, random(10, 0)); | |
} | |
ctx.restore(); | |
} else if (this.dripping && dist < this.inkAmount * 2 && random() < 0.05) { | |
this._drops.push(new Drop( | |
this.x, | |
this.y, | |
(this.size + this.inkAmount) * 0.5 * random(0.25, 0.1), | |
this.color, | |
this._strokeId | |
)); | |
} | |
} | |
if (this._drops.length) { | |
var drops = this._drops, | |
drop, | |
sizeSq = this.size * this.size; | |
for (i = 0, len = drops.length; i < len; i++) { | |
drop = drops[i]; | |
drop.update(this); | |
dx = this.x - drop.x; | |
dy = this.y - drop.y; | |
if ( | |
(sizeSq > dx * dx + dy * dy && this._strokeId !== drop.strokeId) || | |
drop.life <= 0 | |
) { | |
drops.splice(i, 1); | |
len--; | |
i--; | |
} else { | |
drop.draw(ctx); | |
} | |
} | |
} | |
}, | |
removeDrops: function() { | |
this._drops.length = 0; | |
}, | |
_tipReset: function() { | |
var tip = this._tip = [], | |
rad = this.size * 0.5, | |
x0, y0, a0, x1, y1, a1, cv, sv, | |
i, len; | |
a1 = random(Math.PI * 2); | |
len = rad * rad * Math.PI / this.inkAmount | 0; | |
if (len < 1) len = 1; | |
for (i = 0; i < len; i++) { | |
x0 = random(rad); | |
y0 = x0 * 0.5; | |
a0 = random(Math.PI * 2); | |
x1 = x0 * Math.sin(a0); | |
y1 = y0 * Math.cos(a0); | |
cv = Math.cos(a1); | |
sv = Math.sin(a1); | |
tip.push(new Hair( | |
this.x + x1 * cv - y1 * sv, | |
this.y + x1 * sv + y1 * cv, | |
this.inkAmount, | |
this.color | |
)); | |
} | |
} | |
}; | |
/** | |
* Hair | |
*/ | |
function Hair(x, y, inkAmount, color) { | |
this.x = x || 0; | |
this.y = y || 0; | |
this.inkAmount = inkAmount; | |
this.color = color; | |
this._width = this.inkAmount; | |
this._latestPos = { x: this.x, y: this.y }; | |
} | |
Hair.prototype = { | |
update: function(offsetX, offsetY, offsetLength) { | |
this._latestPos.x = this.x; | |
this._latestPos.y = this.y; | |
this.x += offsetX; | |
this.y += offsetY; | |
var per = offsetLength ? this.inkAmount / offsetLength : 0; | |
if (per > 1) per = 1; | |
else if (per < 0) per = 0; | |
this._width = this.inkAmount * per; | |
}, | |
draw: function(ctx) { | |
ctx.save(); | |
ctx.lineCap = ctx.lineJoin = 'round'; | |
line(ctx, this._latestPos, this, this.color, this._width); | |
ctx.restore(); | |
} | |
}; | |
/** | |
* Drop | |
*/ | |
function Drop(x, y, size, color, strokeId) { | |
this.x = x || 0; | |
this.y = y || 0; | |
this.size = size; | |
this.color = color; | |
this.strokeId = strokeId; | |
this.life = this.size * 1.5; | |
this._latestPos = { x: this.x, y: this.y }; | |
} | |
Drop.prototype = { | |
_xrate: 0, | |
update: function() { | |
if (random() < 0.03) { | |
this._xrate += random(0.03, - 0.03); | |
} else if (random() < 0.1) { | |
this._xrate *= 0.003; | |
} | |
this._latestPos.x = this.x; | |
this._latestPos.y = this.y; | |
this.x += this.life * this._xrate; | |
this.y += random(this.life * 0.5); | |
this.life -= random(0.05, 0.01); | |
}, | |
draw: function(ctx) { | |
ctx.save(); | |
ctx.lineCap = ctx.lineJoin = 'round'; | |
line(ctx, this._latestPos, this, this.color, this.size + this.life * 0.3); | |
ctx.restore(); | |
} | |
}; | |
// Draw Helpers | |
function line(ctx, p1, p2, color, lineWidth) { | |
ctx.strokeStyle = color; | |
ctx.lineWidth = lineWidth; | |
ctx.beginPath(); | |
ctx.moveTo(p1.x, p1.y); | |
ctx.lineTo(p2.x, p2.y); | |
ctx.stroke(); | |
} | |
function dot(ctx, x, y, color, size) { | |
ctx.fillStyle = color; | |
ctx.beginPath(); | |
ctx.arc(x, y, size * 0.5, 0, Math.PI * 2, false); | |
ctx.fill(); | |
} | |
return Brush; | |
})(); | |
// Helpers | |
function randomColor() { | |
var r = random(256) | 0, | |
g = random(256) | 0, | |
b = random(256) | 0; | |
return 'rgb(' + r + ',' + g + ',' + b + ')'; | |
} | |
function random(max, min) { | |
if (typeof max !== 'number') { | |
return Math.random(); | |
} else if (typeof min !== 'number') { | |
min = 0; | |
} | |
return Math.random() * (max - min) + min; | |
} | |
// Initialize | |
(function() { | |
// Vars | |
var canvas, context, | |
centerX, centerY, | |
mouseX = 0, mouseY = 0, isMouseDown = false, | |
brush, | |
gui, control, guiColorCtr, guiSizeCtr, guiIsRandColorCtr; | |
// Event Listeners | |
function resize(e) { | |
canvas.width = window.innerWidth; | |
canvas.height = window.innerHeight; | |
centerX = canvas.width * 0.5; | |
centerY = canvas.height * 0.5; | |
context = canvas.getContext('2d'); | |
control.clear(); | |
} | |
function mouseMove(e) { | |
mouseX = e.clientX; | |
mouseY = e.clientY; | |
} | |
function mouseDown(e) { | |
mouseX = e.clientX; | |
mouseY = e.clientY; | |
if (control.isRandomColor) { | |
brush.color = randomColor(); | |
guiColorCtr.updateDisplay(); | |
} | |
if (control.isRandomSize) { | |
brush.size = random(51, 5) | 0; | |
guiSizeCtr.updateDisplay(); | |
} | |
brush.startStroke(mouseX, mouseY); | |
} | |
function mouseUp(e) { | |
brush.endStroke(); | |
} | |
// GUI Control | |
control = { | |
isRandomColor: true, | |
isRandomSize: false, | |
clear: function(e) { | |
context.clearRect(0, 0, canvas.width, canvas.height); | |
brush.removeDrops(); | |
} | |
}; | |
// Init | |
canvas = document.getElementById('c'); | |
brush = new Brush(centerX, centerY, { | |
color: randomColor() | |
}); | |
window.addEventListener('resize', resize, false); | |
resize(null); | |
canvas.addEventListener('mousemove', mouseMove, false); | |
canvas.addEventListener('mousedown', mouseDown, false); | |
canvas.addEventListener('mouseout', mouseUp, false); | |
canvas.addEventListener('mouseup', mouseUp, false); | |
// GUI | |
gui = new dat.GUI(); | |
guiColorCtr = gui.addColor(brush, 'color').name('Color').onChange(function() { | |
control.isRandomColor = false; | |
guiIsRandColorCtr.updateDisplay(); | |
}); | |
guiSizeCtr = gui.add(brush, 'size', 5, 50).name('Size'); | |
gui.add(brush, 'inkAmount', 1, 30).name('Ink Amount'); | |
gui.add(brush, 'splashing').name('Splashing'); | |
gui.add(brush, 'dripping').name('Dripping'); | |
guiIsRandColorCtr = gui.add(control, 'isRandomColor').name('Random Color'); | |
gui.add(control, 'isRandomSize').name('Random Size'); | |
gui.add(control, 'clear').name('Clear'); | |
gui.close(); | |
// Start Update | |
var loop = function() { | |
brush.render(context, mouseX, mouseY); | |
requestAnimationFrame(loop); | |
}; | |
loop(); | |
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: 'Anaheim', sans-serif; | |
padding: 0; | |
margin: 0; | |
background: #f7f6f2; | |
overflow: hidden; | |
-webkit-user-select: none; | |
-moz-user-select: none; | |
-o-user-select: none; | |
-ms-user-select: none; | |
user-select: none; | |
} | |
canvas { | |
position: absolute; | |
top: 0; | |
left: 0; | |
} | |
#message { | |
color: #e2e2de; | |
font-size: 32px; | |
text-align: center; | |
letter-spacing: 2px; | |
position: fixed; | |
top: 50%; | |
width: 100%; | |
margin-top: -0.5em; | |
text-shadow: 0 -1px 0 #d3d3d1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment