Lines Matching refs:function
30 * This function provides requestAnimationFrame in a cross browser way.
34 window.requestAnimationFrame = ( function() {
39 function(callback, element) {
68 function Point(x, y, z, payload) {
80 Point.prototype.color = function () {
85 Point.prototype.decay = function () {
91 function PointsList() {
97 PointsList.prototype.add = function (point) {
105 PointsList.prototype.remove = function (point) {
118 function GeneratePayloadTree(depth, tag) {
135 Math.random = (function() {
137 return function() {
138 // Robert Jenkins' 32 bit integer hash function.
150 function GenerateKey() {
156 function CreateNewPoint() {
172 function ModifyPointsSet() {
197 function PausePlot(width, height, size, scale) {
222 PausePlot.prototype.addPause = function (p) {
239 PausePlot.prototype.iteratePauses = function (f) {
257 PausePlot.prototype.draw = function () {
261 this.iteratePauses(function (i, v) {
277 this.iteratePauses(function (i, v) {
295 function Scene(width, height) {
316 Scene.prototype.drawPoint = function (x, y, z, color) {
335 Scene.prototype.drawDyingPoints = function () {
352 Scene.prototype.draw = function () {
362 function updateStats(pause) {
372 function renderStats() {
395 function render() {
428 function Form() {
429 function create(tag) { return document.createElement(tag); }
430 function text(value) { return document.createTextNode(value); }
438 function col(a) {
444 function row(a, b) {
471 Form.prototype.remove = function () {
476 function init() {
490 function start() {