Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

KmlLookAt.js 362B

il y a 5 ans
123456789101112
  1. /**
  2. * @alias KmlLookAt
  3. * @constructor
  4. *
  5. * @param {Cartesian3} position camera position
  6. * @param {HeadingPitchRange} headingPitchRange camera orientation
  7. */
  8. function KmlLookAt(position, headingPitchRange) {
  9. this.position = position;
  10. this.headingPitchRange = headingPitchRange;
  11. }
  12. export default KmlLookAt;