Searched refs:end2 (Results 1 – 1 of 1) sorted by relevance
158 double cross_product(const point<T>& start, const point<T>& end1, const point<T>& end2) { in cross_product() argument159 return ((end1.x - start.x) * (end2.y - start.y) - (end2.x - start.x) * (end1.y - start.y)); in cross_product()