Complete the coding for a Triangle class, and updates to the point class. Start with your Point class from earlier in the term. Add a copy constructor to the point class, that takes a Point object as an argument and uses that Point's x, y values to initialize the new Point being constructed. Almost any three points in the XY plane can form a triangle. The exception is if all three are on the same line..