Lines Matching refs:Point64

53 	class Point64  class in btConvexHullInternal
60 Point64(int64_t x, int64_t y, int64_t z) : x(x), y(y), z(z) in Point64() function in btConvexHullInternal::Point64
69 int64_t dot(const Point64& b) const in dot()
106 Point64 cross(const Point32& b) const in cross()
108 return Point64(y * b.z - z * b.y, z * b.x - x * b.z, x * b.y - y * b.x); in cross()
111 Point64 cross(const Point64& b) const in cross()
113 return Point64(y * b.z - z * b.y, z * b.x - x * b.z, x * b.y - y * b.x); in cross()
121 int64_t dot(const Point64& b) const in dot()
458 Rational128 dot(const Point64& b) const in dot()
569 Point64 getNormal() in getNormal()
776 …axAngle(bool ccw, const Vertex* start, const Point32& s, const Point64& rxs, const Point64& sxrxs,…
1406 Point64 n = t.cross(s); in getOrientation()
1407Point64 m = (*prev->target - *next->reverse->target).cross(*next->target - *next->reverse->target); in getOrientation()
1425 …axAngle(bool ccw, const Vertex* start, const Point32& s, const Point64& rxs, const Point64& sxrxs,… in findMaxAngle()
1484 Point64 normal = ((start0 ? start0 : start1)->target->point - c0->point).cross(s); in findEdgeForCoplanarFaces()
1487 Point64 perp = s.cross(normal); in findEdgeForCoplanarFaces()
1689 Point64 normal = Point32(0, 0, -1).cross(s); in merge()
1690 Point64 t = s.cross(normal); in merge()
1761 Point64 rxs = r.cross(s); in merge()
1762 Point64 sxrxs = s.cross(rxs); in merge()
2241 Point64 normal = face->getNormal(); in shiftFace()
2480 Point64 n0 = intersection->face->getNormal(); in shiftFace()
2481 Point64 n1 = intersection->reverse->face->getNormal(); in shiftFace()