| パッケージ | 説明 |
|---|---|
| javafx.animation |
使いやすい遷移ベースのアニメーションのクラスのセットを提供します。
|
| javafx.scene.layout |
ユーザー・インタフェース・レイアウトをサポートするクラスを提供します。
|
| javafx.scene.shape |
2次元ジオメトリに関連するオブジェクトで操作を定義および実行する2Dクラスのセットを提供します。
|
| javafx.scene.text |
フォントおよびレンダリング可能なテキスト・ノードのクラスのセットを提供します。
|
| 修飾子と型 | メソッドと説明 |
|---|---|
Shape |
PathTransition.getPath()
プロパティpathの値を取得します。
|
Shape |
FillTransition.getShape()
プロパティshapeの値を取得します。
|
Shape |
StrokeTransition.getShape()
プロパティshapeの値を取得します。
|
| 修飾子と型 | メソッドと説明 |
|---|---|
ObjectProperty<Shape> |
PathTransition.pathProperty()
ノードのアウトラインをアニメーション化する図形。
|
ObjectProperty<Shape> |
FillTransition.shapeProperty()
この
FillTransitionのターゲット図形。 |
ObjectProperty<Shape> |
StrokeTransition.shapeProperty()
この
StrokeTransitionのターゲット図形。 |
| 修飾子と型 | メソッドと説明 |
|---|---|
void |
PathTransition.setPath(Shape value)
プロパティpathの値を設定します。
|
void |
FillTransition.setShape(Shape value)
プロパティshapeの値を設定します。
|
void |
StrokeTransition.setShape(Shape value)
プロパティshapeの値を設定します。
|
| コンストラクタと説明 |
|---|
FillTransition(Duration duration, Shape shape)
FillTransitionのコンストラクタ |
FillTransition(Duration duration, Shape shape, Color fromValue, Color toValue)
FillTransitionのコンストラクタ |
PathTransition(Duration duration, Shape path)
PathTransitionのコンストラクタ。 |
PathTransition(Duration duration, Shape path, Node node)
PathTransitionのコンストラクタ。 |
StrokeTransition(Duration duration, Shape shape)
StrokeTransitionのコンストラクタ |
StrokeTransition(Duration duration, Shape shape, Color fromValue, Color toValue)
StrokeTransitionのコンストラクタ |
| 修飾子と型 | メソッドと説明 |
|---|---|
Shape |
Region.getShape()
プロパティshapeの値を取得します。
|
| 修飾子と型 | メソッドと説明 |
|---|---|
ObjectProperty<Shape> |
Region.shapeProperty()
指定された場合、
shapeでは、角が丸い矩形ではなく指定された図形としてリージョンがレンダリングされます。 |
| 修飾子と型 | メソッドと説明 |
|---|---|
void |
Region.setShape(Shape value)
プロパティshapeの値を設定します。
|
| 修飾子と型 | クラスと説明 |
|---|---|
class |
Arc
Arcクラスは、中心点、開始角(度)、角の大きさ(円弧の長さ(度))および円弧タイプ(ArcType.OPEN、ArcType.CHORDまたはArcType.ROUND)で定義される2D円弧オブジェクトを表します。 |
class |
Circle
Circleクラスは、指定された半径と中心位置(ピクセル単位で測定)に基づいて新しい円を作成します。 |
class |
CubicCurve
CubiCurveクラスは、(x,y)座標空間の3次ベジェ・パラメトリック曲線セグメントを定義します。 |
class |
Ellipse
Ellipseクラスは、指定されたサイズと位置(ピクセル単位)に基づいて新しい楕円を作成します。 |
class |
Line
このLineは、
(x,y)座標空間の線セグメントを表します。 |
class |
Path
Pathクラスは、単純な形状を表し、幾何学的パスの基本的な構築および管理で必要となる機能を備えています。 |
class |
Polygon
x,y座標の配列によって定義されるポリゴンを作成します。
|
class |
Polyline
セグメント点の配列によって定義される折れ線を作成します。
|
class |
QuadCurve
Quadcurveクラスは、(x,y)座標空間の2次ベジェ・パラメトリック曲線セグメントを定義します。 |
class |
Rectangle
Rectangleクラスは、指定されたサイズと位置に基づいて矩形を定義します。 |
class |
SVGPath
SVGPathクラスは、文字列からSVGパス・データを解析することで構築される単純な形状を表します。 |
| 修飾子と型 | メソッドと説明 |
|---|---|
static Shape |
Shape.intersect(Shape shape1, Shape shape2)
指定された入力図形の共通部分として作成された新しい
Shapeを返します。 |
static Shape |
Shape.subtract(Shape shape1, Shape shape2)
最初の形状から指定された2番目の図形を引いて作成された新しい
Shapeを返します。 |
static Shape |
Shape.union(Shape shape1, Shape shape2)
指定された入力図形の集合和として作成された新しい
Shapeを返します。 |
| 修飾子と型 | メソッドと説明 |
|---|---|
static Shape |
Shape.intersect(Shape shape1, Shape shape2)
指定された入力図形の共通部分として作成された新しい
Shapeを返します。 |
static Shape |
Shape.subtract(Shape shape1, Shape shape2)
最初の形状から指定された2番目の図形を引いて作成された新しい
Shapeを返します。 |
static Shape |
Shape.union(Shape shape1, Shape shape2)
指定された入力図形の集合和として作成された新しい
Shapeを返します。 |
| 修飾子と型 | クラスと説明 |
|---|---|
class |
Text
Textクラスは、テキストを表示するノードを定義します。 |
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.