class Mathtype::RecordNudge

Constants

EXPOSED_IN_SNAPSHOT

Public Instance Methods

dx() click to toggle source
# File lib/records/nudge.rb, line 26
def dx
  has_large_offset ? _large_dx : (_small_dx - 128)
end
dy() click to toggle source
# File lib/records/nudge.rb, line 30
def dy
  has_large_offset ? _large_dy : (_small_dy - 128)
end
has_large_offset() click to toggle source
# File lib/records/nudge.rb, line 34
def has_large_offset
  _small_dx == -128 and _small_dy == -128
end