Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Vector3D.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 // $Id:$
3 // ---------------------------------------------------------------------------
4 
7 
8 namespace HepGeom {
9  //--------------------------------------------------------------------------
10  Vector3D<float> &
12  double vx = x(), vy = y(), vz = z();
13  set(m.xx()*vx + m.xy()*vy + m.xz()*vz,
14  m.yx()*vx + m.yy()*vy + m.yz()*vz,
15  m.zx()*vx + m.zy()*vy + m.zz()*vz);
16  return *this;
17  }
18 
19  //--------------------------------------------------------------------------
21  operator*(const Transform3D & m, const Vector3D<float> & v) {
22  double vx = v.x(), vy = v.y(), vz = v.z();
23  return Vector3D<float>
24  (m.xx()*vx + m.xy()*vy + m.xz()*vz,
25  m.yx()*vx + m.yy()*vy + m.yz()*vz,
26  m.zx()*vx + m.zy()*vy + m.zz()*vz);
27  }
28 
29  //--------------------------------------------------------------------------
30  Vector3D<double> &
32  double vx = x(), vy = y(), vz = z();
33  set(m.xx()*vx + m.xy()*vy + m.xz()*vz,
34  m.yx()*vx + m.yy()*vy + m.yz()*vz,
35  m.zx()*vx + m.zy()*vy + m.zz()*vz);
36  return *this;
37  }
38 
39  //--------------------------------------------------------------------------
42  double vx = v.x(), vy = v.y(), vz = v.z();
43  return Vector3D<double>
44  (m.xx()*vx + m.xy()*vy + m.xz()*vz,
45  m.yx()*vx + m.yy()*vy + m.yz()*vz,
46  m.zx()*vx + m.zy()*vy + m.zz()*vz);
47  }
48 } /* namespace HepGeom */
double yy() const
Definition: Transform3D.h:264
void set(T x1, T y1, T z1)
double yx() const
Definition: Transform3D.h:261
double zz() const
Definition: Transform3D.h:276
double xz() const
Definition: Transform3D.h:258
double xy() const
Definition: Transform3D.h:255
double yz() const
Definition: Transform3D.h:267
double xx() const
Definition: Transform3D.h:252
Normal3D< float > operator*(const Transform3D &m, const Normal3D< float > &v)
Definition: Normal3D.cc:24
double zy() const
Definition: Transform3D.h:273
double zx() const
Definition: Transform3D.h:270