Swing/ArabicClockFace のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/ArabicClockFace へ行く。
- 1 (2022-10-03 (月) 00:31:15)
- 2 (2023-03-18 (土) 16:06:15)
- category: swing folder: ArabicClockFace title: AffineTransformを使用してアラビア数字を回転して時計盤に配置する tags: [AffineTransform, JPanel, Timer] author: aterai pubdate: 2022-10-03T00:30:06+09:00 description: AffineTransformを使用して時計盤の上半分と下半分で異なる回転でアラビア数字を配置します。 image: https://drive.google.com/uc?id=1KzFKziZV4Y0zs-b2nE4d8_Y92mdUGZAO
概要
AffineTransformを使用して時計盤の上半分と下半分で異なる回転でアラビア数字を配置します。
Screenshot
Advertisement
サンプルコード
for (String txt : arabicNumerals) {
double m00 = at.getScaleX();
double d = m00 > 0d || Math.abs(m00) < 0.0001 ? 1d : -1d;
AffineTransform si = AffineTransform.getScaleInstance(d, d);
Shape s = getTextLayout(txt, font, frc).getOutline(si);
Rectangle2D r = s.getBounds2D();
double tx = r.getCenterX();
double ty = radius - hourMarkerLen - r.getHeight() + r.getCenterY();
Shape t = AffineTransform.getTranslateInstance(-tx, -ty)
.createTransformedShape(s);
g2.fill(at.createTransformedShape(t));
at.rotate(Math.PI / 6d);
}
View in GitHub: Java, Kotlin解説
- 時計盤の上半分(
9, 10, 11, 12, 1, 2, 3
)- アラビア数字文字列から
Font
やTextLayout
を使用して文字図形を取得 - 時計盤の中央から
12
時の位置まで文字図形を移動 - 時計盤の中央を原点にプラス
30°
回転をAffineTransform
に追加して文字図形を回転
- アラビア数字文字列から
- 時計盤の下半分(
4, 5, 6, 7, 8
)3x3
アフィン変換行列のX
座標スケーリング要素m00
が負かつ0
ではない場合時計盤の下半分と判断し、アラビア数字文字列からFont
やTextLayout
を使用して上下左右反転した文字図形を取得0
かどうかはm00
の絶対値が誤差0.0001
以下かどうかで計算(Math.abs(m00) < 0.0001
)
- 時計の中心から
12
時の位置まで文字図形を移動 - 時計の中心を原点にプラス
30°
回転をAffineTransform
に追加して文字図形を回転