JointType
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
常量摘要
| int |
BEVEL |
关节外侧平缓。 |
| int |
默认 |
默认:斜切连接,固定的伸出部分等于连接外侧描边宽度的一半。 |
| int |
ROUND |
在连接外侧以一个弧度(等于描边宽度的一半)圆弧进行圆角,以顶点为中心。 |
继承的方法摘要
继承自 java.lang.Object 类
|
布尔值
|
equals(Object arg0)
|
|
final
Class<?>
|
getClass()
|
|
整型
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
字符串
|
toString()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
final
void
|
wait()
|
常量
public
static
final
int
BEVEL
public
static
final
int
DEFAULT
默认:斜切连接,固定的伸出部分等于连接外侧描边宽度的一半。
常量值:
0
public
static
final
int
ROUND
在连接外侧以等于描边宽度一半的圆弧进行圆角,以顶点为中心。
常量值:
2
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-10-23。
[null,null,["最后更新时间 (UTC):2025-10-23。"],[],["`JointType` defines the appearance of joints in `Polyline` and `Polygon` outlines. It offers three joint styles: `BEVEL` (flat bevel), `DEFAULT` (mitered with pointed extrusion), and `ROUND` (rounded arc). These styles are represented by integer constants: `BEVEL` (1), `DEFAULT` (0), and `ROUND` (2). `JointType` class also inherits methods from `Object` class for operations such as equality checks, retrieval of class and hashcode, string representation, and other.\n"]]