dmolony-DiskBrowser/src/com/bytezone/diskbrowser/visicalc/Acos.java
2017-03-24 00:30:41 +11:00

16 lines
296 B
Java

package com.bytezone.diskbrowser.visicalc;
public class Acos extends ValueFunction
{
Acos (Cell cell, String text)
{
super (cell, text);
assert text.startsWith ("@ACOS(") : text;
}
@Override
public double calculateValue ()
{
return Math.acos (source.getDouble ());
}
}