#include "util.h"
using namespace std;
#define ABS_FLOAT_0 0.0001
struct point_float{
float x;
float y;
};
float GetTriangleSquar(const point_float pt0,const point_float pt1, const point_float pt2){
point_float AB, BC;
AB.x =