Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into expose-processPacke…
Browse files Browse the repository at this point in the history
…tData
  • Loading branch information
mramato committed Sep 3, 2013
2 parents 653bf6d + f63c4d0 commit 6192b76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/DynamicScene/DynamicObjectView.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ define([
var toInertialDelta = Transforms.computeFixedToIcrfMatrix(deltaTime, update3DMatrix3Scratch2);
var toFixed;

if (!defined(toInertial) || defined(toInertialDelta)) {
if (!defined(toInertial) || !defined(toInertialDelta)) {
toFixed = Transforms.computeTemeToPseudoFixedMatrix(time, update3DMatrix3Scratch3);
toInertial = Matrix3.transpose(toFixed, update3DMatrix3Scratch1);
toInertialDelta = Transforms.computeTemeToPseudoFixedMatrix(deltaTime, update3DMatrix3Scratch2);
Expand Down Expand Up @@ -339,7 +339,7 @@ define([
this._lastDynamicObject = dynamicObject;

var viewFromProperty = this.dynamicObject.viewFrom;
if (!defined(viewFromProperty) || defined(viewFromProperty.getValue(time, offset))) {
if (!defined(viewFromProperty) || !defined(viewFromProperty.getValue(time, offset))) {
Cartesian3.clone(dynamicObjectViewDefaultOffset, offset);
}

Expand Down

0 comments on commit 6192b76

Please sign in to comment.