95 float dx = p.
x()-
x(), dy = p.
y()-
y(), dz = p.
z()-
z();
96 return dx*dx + dy*dy + dz*dz;
119 operator*(
const Transform3D & m,
const Point3D<float> & p);
128 class Point3D<double> :
public BasicVector3D<double> {
136 Point3D(
double x1,
double y1,
double z1) :
BasicVector3D<double>(x1,y1,z1) {}
140 explicit Point3D(
const float * a)
145 explicit Point3D(
const double * a)
150 Point3D(
const Point3D<double> &) =
default;
154 Point3D(Point3D<double> &&) =
default;
166 ~Point3D() =
default;
173 Point3D(
const CLHEP::Hep3Vector & v)
181 operator CLHEP::Hep3Vector ()
const {
return CLHEP::Hep3Vector(
x(),
y(),
z()); }
185 Point3D<double> &
operator=(
const Point3D<double> &) =
default;
203 Point3D<double> &
operator=(Point3D<double> &&) =
default;
207 double distance2()
const {
return mag2(); }
211 double distance2(
const Point3D<double> & p)
const {
212 double dx = p.x()-
x(), dy = p.y()-
y(), dz = p.z()-
z();
213 return dx*dx + dy*dy + dz*dz;
218 double distance()
const {
return std::sqrt(distance2()); }
222 double distance(
const Point3D<double> & p)
const {
223 return std::sqrt(distance2(p));
228 Point3D<double> & transform(
const Transform3D & m);
BasicVector3D< T > & operator=(const BasicVector3D< T > &)=default
Point3D< float > & operator=(const BasicVector3D< float > &v)
float distance2(const Point3D< float > &p) const
Point3D< float > & operator=(Point3D< float > &&)=default
Point3D(float x1, float y1, float z1)
Point3D< float > & operator=(const Point3D< float > &)=default
Point3D(const BasicVector3D< float > &v)
float distance(const Point3D< float > &p) const
Point3D(const Point3D< float > &)=default
Point3D(Point3D< float > &&)=default
Normal3D< float > operator*(const Transform3D &m, const Normal3D< float > &v)