本文整理汇总了TypeScript中@bokehjs/core/util/zoom.scale_highlow函数的典型用法代码示例。如果您正苦于以下问题:TypeScript scale_highlow函数的具体用法?TypeScript scale_highlow怎么用?TypeScript scale_highlow使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了scale_highlow函数的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it("should scale factor ranges around given center if center is provided", () => {
const r = new FactorRange({factors: ['a', 'b', 'c', 'd', 'e'], range_padding: 0})
expect(zoom.scale_highlow(r, 0.1, 2)).to.deep.equal([0.2, 4.7])
expect(zoom.scale_highlow(r, -0.1, 2)).to.deep.equal([-0.2, 5.3])
expect(zoom.scale_highlow(r, 0, 2)).to.deep.equal([0, 5])
})