|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object java.awt.geom.RectangularShape java.awt.geom.Arc2D java.awt.geom.Arc2D.Float
public static class Arc2D.Float
此类定义以 float
精度指定的弧。
嵌套类摘要 |
---|
从类 java.awt.geom.Arc2D 继承的嵌套类/接口 |
---|
Arc2D.Double, Arc2D.Float |
字段摘要 | |
---|---|
float |
extent
弧的角跨越(以度数表示)。 |
float |
height
完整椭圆的总高度(不考虑角跨越),此弧是该椭圆的一部分。 |
float |
start
弧的起始角度(以度数表示)。 |
float |
width
完整椭圆的总宽度(不考虑角跨越),此弧是该椭圆的一部分。 |
float |
x
弧的窗体矩形左上角的 X 坐标。 |
float |
y
弧的窗体矩形左上角的 Y 坐标。 |
从类 java.awt.geom.Arc2D 继承的字段 |
---|
CHORD, OPEN, PIE |
构造方法摘要 | |
---|---|
Arc2D.Float()
构造一个新 OPEN 弧,并将其初始化为:位置 (0, 0)、大小 (0, 0)、角跨越 (start = 0, extent = 0)。 |
|
Arc2D.Float(float x,
float y,
float w,
float h,
float start,
float extent,
int type)
构造一个新弧,并将其初始化为指定的位置、大小、角跨越和闭合类型。 |
|
Arc2D.Float(int type)
构造一个新弧,并将其初始化为:位置 (0, 0)、大小 (0, 0),角跨越 (start = 0, extent = 0)、指定的闭合类型。 |
|
Arc2D.Float(Rectangle2D ellipseBounds,
float start,
float extent,
int type)
构造一个新弧,并将其初始化为指定的位置、大小、角跨越和闭合类型。 |
方法摘要 | |
---|---|
double |
getAngleExtent()
返回弧的角跨越。 |
double |
getAngleStart()
返回弧的起始角度。 |
double |
getHeight()
以 double 精度返回窗体矩形的高度。 |
double |
getWidth()
以 double 精度返回窗体矩形的宽度。 |
double |
getX()
以 double 精度返回窗体矩形左上角的 X 坐标。 |
double |
getY()
以 double 精度返回窗体矩形左上角的 Y 坐标。 |
boolean |
isEmpty()
确定 RectangularShape 是否为空。 |
protected Rectangle2D |
makeBounds(double x,
double y,
double w,
double h)
构造一个适当精度的 Rectangle2D ,以保存为此弧的窗体矩形计算出的参数。 |
void |
setAngleExtent(double angExt)
将此弧的角跨越设置为指定的 double 值。 |
void |
setAngleStart(double angSt)
将此弧的起始角度设置为指定的 double 值。 |
void |
setArc(double x,
double y,
double w,
double h,
double angSt,
double angExt,
int closure)
将此弧的位置、大小、角跨越和闭合类型设置为指定的 double 值。 |
从类 java.awt.geom.Arc2D 继承的方法 |
---|
contains, contains, contains, containsAngle, equals, getArcType, getBounds2D, getEndPoint, getPathIterator, getStartPoint, hashCode, intersects, setAngles, setAngles, setAngleStart, setArc, setArc, setArc, setArcByCenter, setArcByTangent, setArcType, setFrame |
从类 java.awt.geom.RectangularShape 继承的方法 |
---|
clone, contains, getBounds, getCenterX, getCenterY, getFrame, getMaxX, getMaxY, getMinX, getMinY, getPathIterator, intersects, setFrame, setFrame, setFrameFromCenter, setFrameFromCenter, setFrameFromDiagonal, setFrameFromDiagonal |
从类 java.lang.Object 继承的方法 |
---|
finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
字段详细信息 |
---|
public float x
public float y
public float width
public float height
public float start
public float extent
构造方法详细信息 |
---|
public Arc2D.Float()
public Arc2D.Float(int type)
type
- 弧的闭合类型:Arc2D.OPEN
、Arc2D.CHORD
或 Arc2D.PIE
。public Arc2D.Float(float x, float y, float w, float h, float start, float extent, int type)
x
- 弧的窗体矩形左上角的 X 坐标。y
- 弧的窗体矩形左上角的 Y 坐标。w
- 完整椭圆的总宽度,此弧是该椭圆的一部分。h
- 完整椭圆的总高度,此弧是该椭圆的一部分。start
- 弧的起始角度(以度数表示)。extent
- 弧的角跨越(以度数表示)。type
- 弧的闭合类型:Arc2D.OPEN
、Arc2D.CHORD
或 Arc2D.PIE
。public Arc2D.Float(Rectangle2D ellipseBounds, float start, float extent, int type)
ellipseBounds
- 定义完整椭圆外部边界的窗体矩形,此弧是该椭圆的一部分。start
- 以度数表示的弧起始角度。extent
- 以度数表示的弧的角跨越。type
- 弧的闭合类型:Arc2D.OPEN
、Arc2D.CHORD
或 Arc2D.PIE
。方法详细信息 |
---|
public double getX()
double
精度返回窗体矩形左上角的 X 坐标。 注意,该弧部分内切于此 RectangularShape
的窗体矩形。
RectangularShape
中的 getX
public double getY()
double
精度返回窗体矩形左上角的 Y 坐标。 注意,该弧部分内切于此 RectangularShape
的窗体矩形。
RectangularShape
中的 getY
public double getWidth()
double
精度返回窗体矩形的宽度。 注意,该弧部分内切于此 RectangularShape
的窗体矩形。
RectangularShape
中的 getWidth
public double getHeight()
double
精度返回窗体矩形的高度。 注意,该弧部分内切于此 RectangularShape
的窗体矩形。
RectangularShape
中的 getHeight
public double getAngleStart()
Arc2D
中的 getAngleStart
Arc2D.setAngleStart(double)
public double getAngleExtent()
Arc2D
中的 getAngleExtent
Arc2D.setAngleExtent(double)
public boolean isEmpty()
RectangularShape
是否为空。当 RectangularShape
为空时,它不封闭任何区域。
RectangularShape
中的 isEmpty
RectangularShape
为空,则返回 true
;否则返回 false
。public void setArc(double x, double y, double w, double h, double angSt, double angExt, int closure)
Arc2D
中的 setArc
x
- 弧的左上角的 X 坐标。y
- 弧的左上角的 Y 坐标。w
- 完整椭圆的总宽度,此弧是该椭圆的一部分。h
- 完整椭圆的总高度,此弧是该椭圆的一部分。angSt
- 弧的起始角度(以度数表示)。angExt
- 弧的角跨越(以度数表示)。closure
- 弧的闭合类型:Arc2D.OPEN
、Arc2D.CHORD
或 Arc2D.PIE
。public void setAngleStart(double angSt)
Arc2D
中的 setAngleStart
angSt
- 弧的起始角度(以度数表示)。Arc2D.getAngleStart()
public void setAngleExtent(double angExt)
Arc2D
中的 setAngleExtent
angExt
- 弧的角跨越(以度数表示)。Arc2D.getAngleExtent()
protected Rectangle2D makeBounds(double x, double y, double w, double h)
Rectangle2D
,以保存为此弧的窗体矩形计算出的参数。
Arc2D
中的 makeBounds
x
- 窗体矩形左上角的 X 坐标。y
- 窗体矩形左上角的 Y 坐标。w
- 窗体矩形的宽度。h
- 窗体矩形的高度。
Rectangle2D
。
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。