removing 3rd party deps.

This commit is contained in:
Will Charczuk 2016-07-08 17:57:14 -07:00
parent 7f36c08fbf
commit 8bc8b1087c
27 changed files with 1995 additions and 54 deletions

9
drawing/constants.go Normal file
View file

@ -0,0 +1,9 @@
package drawing
const (
// DefaultDPI is the default image DPI.
DefaultDPI = 96.0
// EMRatio is the ratio of something to something else.
EMRatio = 64.0 / 72.0
)