Lines Matching refs:Point64
57 class Point64 class in b3ConvexHullInternal
64 Point64(btInt64_t x, btInt64_t y, btInt64_t z) : x(x), y(y), z(z) in Point64() function in b3ConvexHullInternal::Point64
73 btInt64_t dot(const Point64& b) const in dot()
110 Point64 cross(const Point32& b) const in cross()
112 return Point64(y * b.z - z * b.y, z * b.x - x * b.z, x * b.y - y * b.x); in cross()
115 Point64 cross(const Point64& b) const in cross()
117 return Point64(y * b.z - z * b.y, z * b.x - x * b.z, x * b.y - y * b.x); in cross()
125 btInt64_t dot(const Point64& b) const in dot()
462 Rational128 dot(const Point64& b) const in dot()
573 Point64 getNormal() in getNormal()
780 …axAngle(bool ccw, const Vertex* start, const Point32& s, const Point64& rxs, const Point64& sxrxs,…
1397 Point64 n = t.cross(s); in getOrientation()
1398 …Point64 m = (*prev->target - *next->reverse->target).cross(*next->target - *next->reverse->target); in getOrientation()
1416 …axAngle(bool ccw, const Vertex* start, const Point32& s, const Point64& rxs, const Point64& sxrxs,… in findMaxAngle()
1475 Point64 normal = ((start0 ? start0 : start1)->target->point - c0->point).cross(s); in findEdgeForCoplanarFaces()
1478 Point64 perp = s.cross(normal); in findEdgeForCoplanarFaces()
1680 Point64 normal = Point32(0, 0, -1).cross(s); in merge()
1681 Point64 t = s.cross(normal); in merge()
1752 Point64 rxs = r.cross(s); in merge()
1753 Point64 sxrxs = s.cross(rxs); in merge()
2228 Point64 normal = face->getNormal(); in shiftFace()
2467 Point64 n0 = intersection->face->getNormal(); in shiftFace()
2468 Point64 n1 = intersection->reverse->face->getNormal(); in shiftFace()