Uses of Class
javafx.scene.shape.Shape
-
Packages that use Shape 软件包 描述 javafx.animation 提供一组类,便于使用基于过渡的动画。javafx.css.converter 提供各种转换CSS解析值的StyleConverter
类。javafx.scene.layout 提供类来支持用户界面布局。javafx.scene.shape 提供一组2D类,用于定义和执行与二维几何相关的对象的操作。javafx.scene.text 为字体和可渲染的文本节点提供一组类。 -
-
Uses of Shape in javafx.animation
Methods in javafx.animation that return Shape Modifier and Type 方法 描述 Shape
PathTransition. getPath()
获取属性路径的值。Shape
FillTransition. getShape()
获取属性形状的值。Shape
StrokeTransition. getShape()
获取属性形状的值。Methods in javafx.animation that return types with arguments of type Shape Modifier and Type 方法 描述 ObjectProperty<Shape>
PathTransition. pathProperty()
大纲节点应该被动画的形状。ObjectProperty<Shape>
FillTransition. shapeProperty()
目标形状为FillTransition
。ObjectProperty<Shape>
StrokeTransition. shapeProperty()
目标形状为StrokeTransition
。Methods in javafx.animation with parameters of type Shape Modifier and Type 方法 描述 void
PathTransition. setPath(Shape value)
设置属性路径的值。void
FillTransition. setShape(Shape value)
设置属性形状的值。void
StrokeTransition. setShape(Shape value)
设置属性形状的值。Constructors in javafx.animation with parameters of type Shape Constructor 描述 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
-
Uses of Shape in javafx.css.converter
Methods in javafx.css.converter that return Shape Modifier and Type 方法 描述 Shape
ShapeConverter. convert(ParsedValue<String,Shape> value, Font font)
Methods in javafx.css.converter that return types with arguments of type Shape Modifier and Type 方法 描述 static StyleConverter<String,Shape>
ShapeConverter. getInstance()
Method parameters in javafx.css.converter with type arguments of type Shape Modifier and Type 方法 描述 Shape
ShapeConverter. convert(ParsedValue<String,Shape> value, Font font)
-
Uses of Shape in javafx.scene.layout
Methods in javafx.scene.layout that return Shape Modifier and Type 方法 描述 Shape
Region. getShape()
获取属性形状的值。Methods in javafx.scene.layout that return types with arguments of type Shape Modifier and Type 方法 描述 ObjectProperty<Shape>
Region. shapeProperty()
指定时,Shape
将导致该区域被渲染为指定的形状而不是圆角矩形。Methods in javafx.scene.layout with parameters of type Shape Modifier and Type 方法 描述 void
Region. setShape(Shape value)
设置属性形状的值。 -
Uses of Shape in javafx.scene.shape
Subclasses of Shape in javafx.scene.shape Modifier and Type Class 描述 class
Arc
所述Arc
类表示2D弧对象,由中心点限定的,起始角度(度),角度范围(以度数表示的弧的长度),和一弧型(ArcType.OPEN
,ArcType.CHORD
,或ArcType.ROUND
)。class
Circle
Circle
课程创建一个新的圆圈,其中指定的半径和中心位置以像素为单位。class
CubicCurve
CubiCurve
类定义了(x,y)坐标空间中的三次Bézier参数曲线段。class
Ellipse
Ellipse
类创建一个具有指定大小和位置(以像素为单位)的新椭圆class
Line
此行代表(x,y)
坐标空间中的一个线段。class
Path
Path
类代表一个简单的形状,并提供基本构造和管理几何路径所需的设施。class
Polygon
创建由x,y坐标数组定义的多边形。class
Polyline
创建折线,由分段点数组定义。class
QuadCurve
Quadcurve
类定义了(x,y)坐标空间中的二次Bézier参数曲线段。class
Rectangle
Rectangle
类定义了一个具有指定大小和位置的矩形。class
SVGPath
SVGPath
类表示通过从String解析SVG路径数据构建的简单形状。Methods in javafx.scene.shape that return Shape Modifier and Type 方法 描述 static Shape
Shape. intersect(Shape shape1, Shape shape2)
返回一个新的Shape
,它被创建为指定的输入形状的交集。static Shape
Shape. subtract(Shape shape1, Shape shape2)
返回一个新的Shape
,它是通过从第一个形状中减去指定的第二个形状而创建的。static Shape
Shape. union(Shape shape1, Shape shape2)
返回一个新的Shape
,它被创建为指定输入形状的并集。Methods in javafx.scene.shape with parameters of type Shape Modifier and Type 方法 描述 static Shape
Shape. intersect(Shape shape1, Shape shape2)
返回一个新的Shape
,它被创建为指定输入形状的交集。static Shape
Shape. subtract(Shape shape1, Shape shape2)
返回一个新的Shape
,它是通过从第一个形状中减去指定的第二个形状而创建的。static Shape
Shape. union(Shape shape1, Shape shape2)
返回一个新的Shape
,它被创建为指定输入形状的并集。 -
Uses of Shape in javafx.scene.text
Subclasses of Shape in javafx.scene.text Modifier and Type Class 描述 class
Text
Text
类定义了一个显示文本的节点。
-