home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMOS PD CD
/
amospdcd.iso
/
451-475
/
apd453
/
refraction.amos
/
refraction.amosSourceCode
Wrap
AMOS Source Code
|
1993-01-08
|
315b
|
11 lines
' This program will calculate the refraction from light travelling
' from air->water
' Program written by Brett George
N#=1.333 : N�#=1.007
N#=N#/N�#
Degree
Def Fn _ASIN(X#)=90-Acos(X#)
Do
Input "Enter angle of incidence: ";I# : Print
Print "Angle of refraction="; Fn _ASIN(Sin(I#)/N#) : Print
Loop