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

16 lines
292 B
Java

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