Searched defs:Point3 (Results 1 – 1 of 1) sorted by relevance
62 inline Point3::Point3() noexcept : x_(0.0), y_(0.0), z_(0.0) {} in Point3() function64 inline Point3::Point3(const Point3& p) noexcept : x_(p.GetX()), y_(p.GetY()), z_(p.GetZ()) {} in Point3() function66 inline Point3::Point3(scalar x, scalar y, scalar z) noexcept : x_(x), y_(y), z_(z) {} in Point3() function