Question: invoke the perimeter function which is supposed to return the sum of 4 lines with vertices (point A-B,point B-C, point C-D, point D-A) Point a,

invoke the perimeter function which is supposed to return the sum of 4 lines with vertices

(point A-B,point B-C, point C-D, point D-A)

Point a, b, c, d;

public Quadilateral(Point a, Point b, Point c, Point d) {

this.a = a;

this.b = b;

this.c = c;

this.d = d;

}

public double getPerimeter() {

fill in the code here

}

invoke area function as well

area of triangle ABD + area of triangle BCD

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!