Ignore:
Timestamp:
Jul 26, 2007, 5:43:54 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

wtypes.abを追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/System/Math.ab

    r268 r285  
    172172            End If
    173173        End If
    174         Dim i As Long, k As Long
    175         Dim x2 As Double, w As Double
    176 
     174        Dim k As Long
    177175        If x >= 0 Then
    178176            k = Fix(x / _System_LOG2 + 0.5)
     
    183181        x -= k * _System_LOG2
    184182
    185         x2 = x * x
    186         w = x2 / 22
    187 
    188         i = 18
     183        Dim x2 = x * x
     184        Dim w = x2 / 22
     185
     186        Dim i = 18
    189187        While i >= 6
    190188            w = x2 / (w + i)
Note: See TracChangeset for help on using the changeset viewer.