10 lines
168 B
Go
10 lines
168 B
Go
|
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
|
||
|
)
|