Skip to content

Instantly share code, notes, and snippets.

@sirkitree
Created January 21, 2015 15:29
Show Gist options
  • Save sirkitree/d0bb00d1b42e885385ec to your computer and use it in GitHub Desktop.
Save sirkitree/d0bb00d1b42e885385ec to your computer and use it in GitHub Desktop.
coordinate generator
var points = [];
var x = y = z = this.constraint;
var constraintDecrement = this.constraint * -1;
for (var x = this.constraint; x >= constraintDecrement; x--) {
points.push({
'pos': {'x' : x, 'y' : y, 'z' : z}
});
for (var y = this.constraint; y > constraintDecrement; y--) {
points.push({
'pos': {'x' : x, 'y' : y, 'z' : z}
});
for (var z = this.constraint; z > constraintDecrement; z--) {
points.push({
'pos': {'x' : x, 'y' : y, 'z' : z}
});
};
};
};
@sirkitree
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment