Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Denz1994 committed May 11, 2020
1 parent 3356bd7 commit cab1678
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions js/common/view/view3d/Molecule3DNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,14 +186,13 @@ class Molecule3DNode extends DOM {

assert && assert( isFinite( ellipticalSemiMinor ) );
return {
interSectionPointX: interSectionPoint.x, // Vector2 intersectionPointX
interSectionPointY: interSectionPoint.y, // Vector2 intersectionPointY
arcCenterX: arcCenter.x, // Vector2 arcCenterX
arcCenterY: arcCenter.y, // Vector2 arcCenterY
ellipticalSemiMinor: ellipticalSemiMinor, // number ellipticalSemiMinor
ellipticalSemiMajor: ellipticalSemiMajor, // number ellipticalSemiMajor
startAngle: startAngle, // number startAngle
alpha: alpha // number
interSectionPointX: interSectionPoint.x,
arcCenterX: arcCenter.x,
arcCenterY: arcCenter.y,
ellipticalSemiMinor: ellipticalSemiMinor,
ellipticalSemiMajor: ellipticalSemiMajor,
startAngle: startAngle,
alpha: alpha
};
}

Expand Down

0 comments on commit cab1678

Please sign in to comment.