當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript math.atan2函數代碼示例

本文整理匯總了TypeScript中core/util/math.atan2函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript atan2函數的具體用法?TypeScript atan2怎麽用?TypeScript atan2使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了atan2函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

 it("should return the arctangent between 2 (x,y) points", () => {
   expect(math.atan2([0,0],[0,1])).to.be.closeTo(Math.PI/2, 0.0000001) // vertical up
   expect(math.atan2([0,0],[0,-1])).to.be.closeTo(-Math.PI/2, 0.0000001) // vertical down
   expect(math.atan2([0,0],[1,0])).to.be.closeTo(0, 0.0000001) // horizontal right
   expect(math.atan2([0,0],[-1,0])).to.be.closeTo(Math.PI, 0.0000001) // horizontal left
   expect(math.atan2([1,1],[2,2])).to.be.closeTo(Math.PI/4, 0.0000001)
 })
開發者ID:jsignell,項目名稱:bokeh,代碼行數:7,代碼來源:math.ts

示例2: _arrow_head

  protected _arrow_head(ctx: Context2d, action: "render" | "clip", head: ArrowHead, start: Coords, end: Coords): void {
    for (let i = 0, _end = this._x_start.length; i < _end; i++) {
      // arrow head runs orthogonal to arrow body
      const angle = Math.PI/2 + atan2([start[0][i], start[1][i]], [end[0][i], end[1][i]])

      ctx.save()

      ctx.translate(end[0][i], end[1][i])
      ctx.rotate(angle)

      if (action == "render")
        head.render(ctx, i)
      else if (action == "clip")
        head.clip(ctx, i)

      ctx.restore()
    }
  }
開發者ID:Zyell,項目名稱:bokeh,代碼行數:18,代碼來源:arrow.ts

示例3: _arrow_head

  _arrow_head(ctx: Context2d, action, head, start, end) {
    for (let i = 0, _end = this._x_start.length; i < _end; i++) {
      // arrow head runs orthogonal to arrow body
      const angle = (Math.PI/2) + atan2([start[0][i], start[1][i]], [end[0][i], end[1][i]]);

      ctx.save();

      ctx.translate(end[0][i], end[1][i]);
      ctx.rotate(angle);

      if (action === "render") {
        head.render(ctx);
      } else if (action === "clip") {
        head.clip(ctx);
      }

      ctx.restore();
    }
  }
開發者ID:FourtekIT-incubator,項目名稱:bokeh,代碼行數:19,代碼來源:arrow.ts


注:本文中的core/util/math.atan2函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。