Flatlogic Bot 055d24df95 WORKING
2025-10-14 02:37:44 +00:00

13 lines
314 B
JavaScript

/**
* @alias KmlLookAt
* @constructor
*
* @param {Cartesian3} position camera position
* @param {HeadingPitchRange} headingPitchRange camera orientation
*/
function KmlLookAt(position, headingPitchRange) {
this.position = position;
this.headingPitchRange = headingPitchRange;
}
export default KmlLookAt;