Devine Lu Linvega a2fed4c21e Added icons
2017-01-12 15:37:22 -07:00

13 lines
209 B
JavaScript

function Angle(angle_str = "0'")
{
Unit.call(this);
this.example = "45'";
this.degrees = parseFloat(angle_str.replace('\'',''));
this.render = function()
{
return this.degrees+"'";
}
}