Searched refs:tmp_p (Results 1 – 2 of 2) sorted by relevance
47 cv::Point3f tmp_p; in readPLY() local48 tmp_p.x = (float)StringToInt(x); in readPLY()49 tmp_p.y = (float)StringToInt(y); in readPLY()50 tmp_p.z = (float)StringToInt(z); in readPLY()51 list_vertex.push_back(tmp_p); in readPLY()
27 cv::Point3f tmp_p; in CROSS() local28 tmp_p.x = v1.y*v2.z - v1.z*v2.y; in CROSS()29 tmp_p.y = v1.z*v2.x - v1.x*v2.z; in CROSS()30 tmp_p.z = v1.x*v2.y - v1.y*v2.x; in CROSS()31 return tmp_p; in CROSS()41 cv::Point3f tmp_p; in SUB() local42 tmp_p.x = v1.x - v2.x; in SUB()43 tmp_p.y = v1.y - v2.y; in SUB()44 tmp_p.z = v1.z - v2.z; in SUB()45 return tmp_p; in SUB()