作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在PolylineConnection
末端创建空心箭头?
目前我有一个实心箭头,使用:
PolylineConnection c
PolygonDecoration decoration = new PolygonDecoration();
PointList decorationPointList = new PointList();
decorationPointList.addPoint(0, 0);
decorationPointList.addPoint(-2, 2);
decorationPointList.addPoint(-2, 0);
decorationPointList.addPoint(-2, -2);
decoration.setTemplate(decorationPointList);
c.setSourceDecoration(decoration);
但我只需要一个箭头的轮廓,中心是空心的。
最佳答案
没有时间测试,但是setFill(boolean)
应该这样做:
decoration.setTemplate(decorationPointList);
decoration.setFill(false);
关于java - 在 PolylineConnection 的末端创建一个空心箭头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12611677/
如何在PolylineConnection末端创建空心箭头? 目前我有一个实心箭头,使用: PolylineConnection c PolygonDecoration decoration = ne
我是一名优秀的程序员,十分优秀!