3d-interface/js/prototype/FixedCamera.js

10 lines
292 B
JavaScript
Raw Normal View History

2015-05-11 09:31:10 +02:00
// Initialization
// class camera extends THREE.PerspectiveCamera
var FixedCamera = function(arg1, arg2, arg3, arg4, position, target) {
ArrowCamera.apply(this, arguments);
}
FixedCamera.prototype = Object.create(ArrowCamera.prototype);
FixedCamera.prototype.constructor = FixedCamera;