1 /** 2 * Copyright (C) 2009-2012 Klaus Reimer <k@ailis.de> 3 * See LICENSE.txt for licensing information 4 * 5 * @require threedee.js 6 */ 7 8 /** 9 * @constructor 10 * Constructs a new updater. 11 * 12 * @class 13 * A plane 14 */ 15 threedee.NodeUpdater = function() 16 { 17 // Empty 18 }; 19 20 /** 21 * Updates the node with the specified time delta. 22 * 23 * @param {!threedee.SceneNode} node 24 * The node to update 25 * @param {number} delta 26 * The time elapsed since the last scene update (in milliseconds) 27 */ 28 threedee.NodeUpdater.prototype.update = function(node, delta) 29 { 30 // Empty 31 }; 32