``` val area = 0.5 * abs( (next._1 - previous._1) * (current._2 - previous._2) - (current._1 - previous._1) * (next._2 - previous._1) ) ``` the final term should be `previous_2`.
the final term should be
previous_2.