Processing, textDescent()
用法介紹。
用法
textDescent()
返回
float
說明
返回當前字體以其當前大小的下降。此信息對於確定基線下方字體的高度很有用。
例子
size(400, 400);
float base = height * 0.75;
float scalar = 0.8; // Different for each font
textSize(128); // Set initial text size
textSize(128); // Set initial text size
float a = textDescent() * scalar; // Calc ascent
line(0, base+a, width, base+a);
text("dp", 0, base); // Draw text on baseline
textSize(256); // Increase text size
a = textDescent() * scalar; // Recalc ascent
line(160, base+a, width, base+a);
text("dp", 160, base); // Draw text on baseline
有關的
相關用法
- Processing texture()用法及代碼示例
- Processing textSize()用法及代碼示例
- Processing textureMode()用法及代碼示例
- Processing textLeading()用法及代碼示例
- Processing text()用法及代碼示例
- Processing textFont()用法及代碼示例
- Processing textAscent()用法及代碼示例
- Processing textAlign()用法及代碼示例
- Processing textMode()用法及代碼示例
- Processing textWidth()用法及代碼示例
- Processing textureWrap()用法及代碼示例
- Processing thread()用法及代碼示例
- Processing triangle()用法及代碼示例
- Processing trim()用法及代碼示例
- Processing true用法及代碼示例
- Processing this用法及代碼示例
- Processing try用法及代碼示例
- Processing tint()用法及代碼示例
- Processing tan()用法及代碼示例
- Processing translate()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 textDescent()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。