Searched refs:point_src (Results 1 – 1 of 1) sorted by relevance
703 void map_point(double mat[9], point_t* point_src, point_t* point_dst) in map_point() argument708 double D = point_src->col * mat[6] + point_src->row * mat[7] + mat[8]; in map_point()709 point_dst->col = (point_src->col * mat[0] + point_src->row * mat[1] + mat[2]) / D; in map_point()710 point_dst->row = (point_src->col * mat[3] + point_src->row * mat[4] + mat[5]) / D; in map_point()