Ignore:
Timestamp:
Mar 9, 2009, 3:13:24 AM (15 years ago)
Author:
イグトランス (egtra)
Message:

Circle, Sqrtを壊していたので修正。プロンプト画面の描画ステートメントの座標の引数をDoubleへ変更。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/ablib/src/Classes/ActiveBasic/Math/Math.ab

    r589 r684  
    33Namespace ActiveBasic
    44Namespace Math
     5
     6Const PI = _System_PI
     7
    58'----
    69'浮動小数点数補助
     
    8790            Dim j = jj >> 5 As Long
    8891            Dim k = (jj And &h0000001f) As Long
    89             j = (j + 511) << 4 + k
     92            j = ((j + 511) << 4) + k
    9093            SetWord(i, j)
    9194            Dim last As Double
Note: See TracChangeset for help on using the changeset viewer.