Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在最新的 jsxgraph 夜间版本中,线箭头的大小非常小。尝试使用 firstArrow 和 lastArrow 在线制作箭头并从点创建箭头。两者都产生相同的输出。
非常感谢您指出这一点。lastArrow实际上,从 v0.99.7 开始,可以通过设置属性或firstArrow对象而不是布尔值来配置箭头的类型和大小。例子:
lastArrow
firstArrow
lastArrow: { type: 1, highlightSize: 6, size: 6 }
到目前为止,箭头元素具有lastArrow:true硬编码属性并在内部使用硬编码值size == 3。现在在源中进行了以下更改:
lastArrow:true
size == 3
size == 6
lastArrow == true
它将在今天的夜间版本中提供。