Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SWTGUIで2D描画を行っています。そのために私はGCオブジェクトを持っています。
SWTキャンバス内に回転したテキストを描画するにはどうすればよいですか?
これはそれを行う必要があります:
Transform tr = new Transform(display); tr.rotate(-90); gc.setTransform(tr); gc.drawText("Text", x, y);