Last active
February 5, 2016 18:26
-
-
Save infusion/917d0ba25ec04bc2125d to your computer and use it in GitHub Desktop.
Draw some shapes on the console using coffee script
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
### | |
# Draw some shapes on the console | |
# Copyright (c) 2014, Robert Eisele ([email protected]) | |
# Dual licensed under the MIT or GPL Version 2 licenses. | |
### | |
draw = (size, cb) -> | |
chars = [ ":", "O" ] | |
i = 0 | |
while i < size | |
j = 0 | |
while j < size | |
process.stdout.write(chars[Number(cb(i, j, size))]) | |
j++ | |
process.stdout.write("\n") | |
i++ | |
console.log("\n\n\n") | |
return | |
## Draw a triangle | |
draw 30, (r, c, s) -> | |
r < c | |
## Draw a circle | |
draw 30, (r, c, s) -> | |
Math.pow(r - s / 2 + 1, 2) + Math.pow(c - s / 2 + 1, 2) < Math.pow(s / 2, 2) | |
## Draw a house | |
draw 30, (r, c, s) -> | |
Math.abs(c - s / 2) < r | |
## Draw a card | |
draw 30, (r, c, s) -> | |
Math.abs(r - s / 2) < Math.abs(c - s / 2) | |
## Draw a rhombus | |
draw 30, (r, c, s) -> | |
t = Math.abs(r - (s - 1) / 2) | |
t < c < s - t | |
## Draw a pyramid | |
draw 30, (r, c, s) -> | |
Math.abs(2 * c - s + 1) <= r | |
## Draw an umbrella | |
draw 30, (r, c, s) -> | |
Math.abs(c - (s - 1) / 2) <= r && (r < (s - 1) / 2 || c == s >> 1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment