Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.scene.shape |
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
|
javafx.scene.text |
Provides the set of classes for fonts and renderable Text Node.
|
Modifier and Type | Class and Description |
---|---|
class |
ArcTo
A path element that forms an arc from the previous coordinates
to the specified x and y coordinates using the specified radius.
|
class |
ClosePath
A path element which closes the current path.
|
class |
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. |
class |
HLineTo
Creates a horizontal line path element from the current point to x.
|
class |
LineTo
Creates a line path element by drawing a straight line
from the current coordinate to the new coordinates.
|
class |
MoveTo
Creates an addition to the path by moving to the specified
coordinates.
|
class |
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. |
class |
VLineTo
Creates a vertical line path element from the current point to y.
|
Modifier and Type | Field and Description |
---|---|
private ObservableList<PathElement> |
Path.elements
Defines the array of path elements of this path.
|
private java.util.Collection<? extends PathElement> |
PathBuilder.elements |
Modifier and Type | Method and Description |
---|---|
ObservableList<PathElement> |
Path.getElements()
Gets observable list of path elements of this path.
|
Modifier and Type | Method and Description |
---|---|
void |
PathElementBuilder.applyTo(PathElement x) |
B |
PathBuilder.elements(PathElement... x)
Add the given items to the List of items in the
elements property for the instance constructed by this builder. |
Modifier and Type | Method and Description |
---|---|
B |
PathBuilder.elements(java.util.Collection<? extends PathElement> x)
Add the given items to the List of items in the
elements property for the instance constructed by this builder. |
Constructor and Description |
---|
Path(PathElement... elements)
Creates a new instance of Path
|
Constructor and Description |
---|
Path(java.util.Collection<? extends PathElement> elements)
Creates new instance of Path
|
Modifier and Type | Field and Description |
---|---|
private PathElement[] |
TextBuilder.impl_caretShape |
private PathElement[] |
TextBuilder.impl_selectionShape |
Modifier and Type | Method and Description |
---|---|
PathElement[] |
Text.getImpl_caretShape()
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|
PathElement[] |
Text.getImpl_selectionShape()
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|
PathElement[] |
Text.impl_getRangeShape(int start,
int end)
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|
PathElement[] |
Text.impl_getUnderlineShape(int start,
int end)
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|
Modifier and Type | Method and Description |
---|---|
B |
TextBuilder.impl_caretShape(PathElement[] x)
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
B |
TextBuilder.impl_selectionShape(PathElement[] x)
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
void |
Text.setImpl_caretShape(PathElement[] value)
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|
void |
Text.setImpl_selectionShape(PathElement[] value)
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to