用 JSFL 填充图形
例如,我使用 JSFL 方法在 Flsh ID 中绘制图形
// draw rectangle
doc.addNewLine({x:0, y:0}, {x:2000, y:0});
doc.addNewLine({x:2000, y:0}, {x:2000, y:500});
doc.addNewLine({x:2000, y:500}, {x:0, y:500});
doc.addNewLine({x:0, y:500}, {x:0, y:0});
// how can I fill it, because this way doesn't work
doc.setFillColor('#0000ff');
I draw figure in Flsh ID with JSFL methods, for example
// draw rectangle
doc.addNewLine({x:0, y:0}, {x:2000, y:0});
doc.addNewLine({x:2000, y:0}, {x:2000, y:500});
doc.addNewLine({x:2000, y:500}, {x:0, y:500});
doc.addNewLine({x:0, y:500}, {x:0, y:0});
// how can I fill it, because this way doesn't work
doc.setFillColor('#0000ff');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
实际上,功劳归于Christian Guirreri,而不是我。
这是完整的 jsfl 文章。
Try this:
Credits actually go to Christian Guirreri, not me.
Here is the full jsfl article.
我发现另一种对于在舞台上填充形状很有用的方法。这包含了您的矩形形状和“#0000FF”颜色:
Another method that I have found useful for filling shapes on the stage. This incorporates your rectangle shape and the "#0000FF" color: