You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the current text scaling system makes it needlessly difficult to define the "shape" of a character.
i feel that something more explicit than the current rusttype::Scale based system may be beneficial to the usability of this library .
one possibility is taking four numeric arguments, (x, y, width, height). where x and y define the position of the top left corner of the character, and width and height define how far the character extends from x and y
The text was updated successfully, but these errors were encountered:
as far as i can tell my issue with the current system actually stems from within the lib itself, as it seems to use the scale as the upper limits for the character, rather then using it as a set width and height.
the current text scaling system makes it needlessly difficult to define the "shape" of a character.
i feel that something more explicit than the current
rusttype::Scale
based system may be beneficial to the usability of this library .one possibility is taking four numeric arguments, (
x
,y
,width
,height
). wherex
andy
define the position of the top left corner of the character, andwidth
andheight
define how far the character extends fromx
andy
The text was updated successfully, but these errors were encountered: