This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package lessons.trig.util; | |
| @SuppressWarnings("DuplicatedCode") | |
| public class Triangle { | |
| // 1000000.1234 is "null" value, and is large enough to not be used in actual math | |
| private final double Null = 1000000.1234; | |
| String unit = "units"; | |
| public double a=Null; | |
| public double b=Null; | |
| public double c=Null; |