Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

KmlLookAt.js 362B

5 anos atrás
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;