This file contains hidden or 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
var dot = function(x1, y1, x2, y2) { | |
return x1 * x2 + y1 * y2; | |
}; | |
var Plane = function(x, y, d) { | |
this.x = x; | |
this.y = y; | |
this.d = d; | |
}; |
This file contains hidden or 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
# EPIC Matplotlib Style | |
# ===================== | |
# | |
# To make this your default style on OS X, save it as: | |
# ~/.matplotlib/matplotlibrc | |
# | |
# Styles: BMH and GGPLOT | |
# Colors: colorbrewer.org | |
# Backend |