예제 #1
0
파일: Triangle.cs 프로젝트: Maslianka/CSHW9
        public double Square()
        {
            double p     = Perimiter() / 2;
            double sideA = Point1.Distance(Point2);
            double sideB = Point2.Distance(Point3);
            double sideC = Point3.Distance(Point1);

            return(Math.Sqrt(p * (p - sideA) * (p - sideB) * (p - sideC)));
        }
예제 #2
0
파일: Triangle.cs 프로젝트: Maslianka/CSHW9
 public double Perimiter()
 {
     return(Point1.Distance(Point2) + Point2.Distance(Point3) + Point3.Distance(Point1));
 }