I'm trying to create a flight path animation similar to the Camera example in the Sandcastle demo (http://cesium.agi.com/Cesium/Apps/Sandcastle/index.html?src=Camera.html). Here's the code in question:
var destination = Cesium.Cartographic.fromDegrees(self.longitude, self.latitude, 15000.0);
var animation = Cesium.CameraFlightPath.createAnimation(scene.getFrameState(), {
destination: destination
});
scene.getAnimations().add(animation);
However, when on the call to createAnimation I get the following error on line 73592: var dot = start.normalize().dot(end.normalize());
end.normalize is not a function