(Geometry: n-sided regular polygon)
An n-sided regular polygon’s sides all have the same length andall of its angles have the same degree (i.e., the polygon is bothequilateral and equiangular). Design a class named RegularPolygonthat contains:
– A private int data field named n that defines the number ofsides in the polygon.
– A private float data field named side that stores the length ofthe side.
– A private float data field named x that defines the x-coordinateof the center of the polygon with default value 0.
– A private float data field named y that defines the y-coordinateof the center of the polygon with default
OR
OR