jsxgraph 中的线箭头尺寸很小

Line arrow size is small in jsxgraph

在 jsxgraph 的最新夜间构建中,线箭头的大小非常小。尝试使用 firstArrow 和 lastArrow 制作箭头并从点创建箭头。两者的结果相同。

非常感谢您指出这一点。实际上,从 v0.99.7 开始,可以通过将属性 lastArrowfirstArrow 设置为对象而不是布尔值来配置箭头的类型和大小。示例:

lastArrow: {
    type: 1,
    highlightSize: 6,
    size: 6
}

到目前为止,箭头元素具有 lastArrow:true 硬编码属性,并且在内部使用硬编码值 size == 3。现在源中有以下更改:

  • 上面的例子是箭头元素的默认值
  • size == 6 被用于案例 lastArrow == true

它将在今天的夜间版本中可用。