Chaikin's algorithm smooths the polygon by creating new points between existing points, moving them slightly inward.
On each iteration:For a pair of adjacent points, two new points are calculated:
* One at 1/4 of the distance from the first point to the second.
* Another at 3/4 of the distance from the first point to the second.
These new points replace the original pair.