Ignore:
Timestamp:
Mar 2, 2007, 3:42:00 AM (17 years ago)
Author:
dai
Message:

Math.AbsとグローバルなAbsのオーバーロードが解決できないバグを修正。

File:
1 edited

Legend:

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

    r92 r124  
    147147        End If
    148148
    149         Return Math.Sin((_System_HalfPI - Abs(x)) As Double)
     149        Return Math.Sin((_System_HalfPI - Math.Abs(x)) As Double)
    150150    End Function
    151151
     
    520520
    521521    Static Function Sinh(x As Double) As Double
    522         If Abs(x) > _System_EPS5 Then
     522        If Math.Abs(x) > _System_EPS5 Then
    523523            Dim t As Double
    524524            t = Exp(x)
Note: See TracChangeset for help on using the changeset viewer.