Thread: SCalculator 3
View Single Post
  #6 (permalink)  
Old 11-01-2007, 03:32 AM
alfcen's Avatar
alfcen alfcen is offline
Basic4ppc Veteran
 
Join Date: Apr 2007
Location: Okinawa, Ryukyu
Posts: 424
Awards Showcase
Beta Tester 
Total Awards: 1
Default

Hello Derez,
Impressed by your brainwork!
Idea: what about adding bitwise.dll to perform Dec to Hex / Hex to Dec, etc. This will well occupy those two vacant buttons

One more:

Atnq (unlike Atn gets the correct quadrant)

Code:
Sub Atnq(x, y)
  z=Atan(x/y)
  if y < 0 Then z = z + cPI
  if y > 0 and x < 0 then z = z + cPI*2
  Return z
End Sub
Cheers
Robert
Reply With Quote