private void adjustMetrics() {
PApplet app = H.app();
app.pushStyle();
app.textFont(_font,(_height < 0)? -_height : _height);
_descent = app.textDescent();
_width = (_text==null)? 0 :
(_width<0)? -app.textWidth(_text) : app.textWidth(_text);
app.popStyle();
}