Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CLHEP
CLHEP
Commits
ee60e9f7
Commit
ee60e9f7
authored
Nov 07, 2012
by
Lynn Garren
Browse files
fix bug introduced in 2.1.2.0
parent
52ee46c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Vector/Vector/Rotation.icc
View file @
ee60e9f7
...
...
@@ -340,7 +340,7 @@ inline HepRotation operator * (const HepRotationZ & rz, const HepRotation & r){
HepRep3x3 mmm = r.rep3x3();
double c = rz.xx();
double ss = rz.yx();
return HepRotation ( c*mmm.xx_-s*mmm.yx_, c*mmm.xy_-s*mmm.yy_, c*mmm.xz_-s*mmm.yz_,
return HepRotation ( c*mmm.xx_-s*mmm.yx_, c*mmm.xy_-s*mmm.yy_, c*mmm.xz_-s
s
*mmm.yz_,
ss*mmm.xx_+c*mmm.yx_, ss*mmm.xy_+c*mmm.yy_, ss*mmm.xz_+c*mmm.yz_,
mmm.zx_, mmm.zy_, mmm.zz_ );
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment