Spec-Zone .ru
спецификации, руководства, описания, API
|
See: Description
Class | Description |
---|---|
Arc |
The
Arc class represents a 2D arc object, defined by a center point,
start angle (in degrees), angular extent (length of the arc in degrees),
and an arc type (ArcType.OPEN , ArcType.CHORD ,
or ArcType.ROUND ). |
ArcBuilder<B extends ArcBuilder<B>> |
Builder class for javafx.scene.shape.Arc
|
ArcTo |
A path element that forms an arc from the previous coordinates
to the specified x and y coordinates using the specified radius.
|
ArcToBuilder<B extends ArcToBuilder<B>> |
Builder class for javafx.scene.shape.ArcTo
|
Circle |
The
Circle class creates a new circle
with the specified radius and center location measured in pixels
Example usage. |
CircleBuilder<B extends CircleBuilder<B>> |
Builder class for javafx.scene.shape.Circle
|
ClosePath |
A path element which closes the current path.
|
ClosePathBuilder<B extends ClosePathBuilder<B>> |
Builder class for javafx.scene.shape.ClosePath
|
CubicCurve |
The
CubiCurve class defines a cubic Bézier parametric curve segment
in (x,y) coordinate space. |
CubicCurveBuilder<B extends CubicCurveBuilder<B>> |
Builder class for javafx.scene.shape.CubicCurve
|
CubicCurveTo |
Creates a curved path element, defined by three new points,
by drawing a Cubic Bézier curve that intersects both the current coordinates
and the specified coordinates
(x,y) , using the
specified points (controlX1,controlY1) and (controlX2,controlY2)
as Bézier control points. |
CubicCurveToBuilder<B extends CubicCurveToBuilder<B>> |
Builder class for javafx.scene.shape.CubicCurveTo
|
Ellipse |
The
Ellipse class creates a new ellipse
with the specified size and location in pixels |
EllipseBuilder<B extends EllipseBuilder<B>> |
Builder class for javafx.scene.shape.Ellipse
|
HLineTo |
Creates a horizontal line path element from the current point to x.
|
HLineToBuilder<B extends HLineToBuilder<B>> |
Builder class for javafx.scene.shape.HLineTo
|
Line |
This Line represents a line segment in
(x,y)
coordinate space. |
LineBuilder<B extends LineBuilder<B>> |
Builder class for javafx.scene.shape.Line
|
LineTo |
Creates a line path element by drawing a straight line
from the current coordinate to the new coordinates.
|
LineToBuilder<B extends LineToBuilder<B>> |
Builder class for javafx.scene.shape.LineTo
|
MoveTo |
Creates an addition to the path by moving to the specified
coordinates.
|
MoveToBuilder<B extends MoveToBuilder<B>> |
Builder class for javafx.scene.shape.MoveTo
|
Path |
The
Path class represents a simple shape
and provides facilities required for basic construction
and management of a geometric path. |
PathBuilder<B extends PathBuilder<B>> |
Builder class for javafx.scene.shape.Path
|
PathElement |
The
PathElement class represents an abstract element
of the Path that can represent any geometric objects
like straight lines, arcs, quadratic curves, cubic curves, etc. |
PathElementBuilder<B extends PathElementBuilder<B>> |
Builder class for javafx.scene.shape.PathElement
|
Polygon |
Creates a polygon, defined by an array of x,y coordinates.
|
PolygonBuilder<B extends PolygonBuilder<B>> |
Builder class for javafx.scene.shape.Polygon
|
Polyline |
Creates a polyline, defined by the array of the segment points.
|
PolylineBuilder<B extends PolylineBuilder<B>> |
Builder class for javafx.scene.shape.Polyline
|
QuadCurve |
The
Quadcurve class defines a quadratic Bézier parametric curve
segment in (x,y) coordinate space. |
QuadCurveBuilder<B extends QuadCurveBuilder<B>> |
Builder class for javafx.scene.shape.QuadCurve
|
QuadCurveTo |
Creates a curved path element, defined by two new points,
by drawing a Quadratic Bézier curve that intersects both the current coordinates
and the specified coordinates
(x, y) ,
using the specified point (controlX, controlY)
as a Bézier control point. |
QuadCurveToBuilder<B extends QuadCurveToBuilder<B>> |
Builder class for javafx.scene.shape.QuadCurveTo
|
Rectangle |
The
Rectangle class defines a rectangle
with the specified size and location. |
RectangleBuilder<B extends RectangleBuilder<B>> |
Builder class for javafx.scene.shape.Rectangle
|
Shape |
The
Shape class provides definitions of common properties for
objects that represent some form of geometric shape. |
ShapeBuilder<B extends ShapeBuilder<B>> |
Builder class for javafx.scene.shape.Shape
|
SVGPath |
The
SVGPath class represents a simple shape that is constructed by
parsing SVG path data from a String. |
SVGPathBuilder<B extends SVGPathBuilder<B>> |
Builder class for javafx.scene.shape.SVGPath
|
VLineTo |
Creates a vertical line path element from the current point to y.
|
VLineToBuilder<B extends VLineToBuilder<B>> |
Builder class for javafx.scene.shape.VLineTo
|
Enum | Description |
---|---|
ArcType |
ArcType specifies the closure type for Arc objects. |
FillRule |
The fill rule for determining the interior of the path.
|
StrokeLineCap |
Defines the end cap style of a
Shape . |
StrokeLineJoin |
Defines the line join style of a
Shape . |
StrokeType |
Defines where to draw the stroke around the boundary of a Shape node.
|
Provides the set of 2D classes for defining and performing operations on objects related to two-dimensional geometry.
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to