/* 517 */ Point3d earPosition = new Point3d();
/* */
/* 521 */ boolean earsXformed = false;
/* 522 */ if ((!earsXformed) &&
/* 523 */ (view != null)) {
/* 524 */ PhysicalBody body = view.getPhysicalBody();
/* 525 */ if (body != null)
/* */ {
/* 530 */ Transform3D headToVwrld = new Transform3D();
/* */ try {
/* 532 */ view.getUserHeadToVworld(headToVwrld);
/* */ }
/* */ catch (NoSuchElementException e)
/* */ {
/* */ }
/* */ catch (RestrictedAccessException e2)
/* */ {
/* */ }
/* */
/* 556 */ body.getLeftEarPosition(earPosition);
/* 557 */ this.xformLeftEar.x = ((float)earPosition.x);
/* 558 */ this.xformLeftEar.y = ((float)earPosition.y);
/* 559 */ this.xformLeftEar.z = ((float)earPosition.z);
/* 560 */ body.getRightEarPosition(earPosition);
/* 561 */ this.xformRightEar.x = ((float)earPosition.x);
/* 562 */ this.xformRightEar.y = ((float)earPosition.y);
/* 563 */ this.xformRightEar.z = ((float)earPosition.z);
/* 564 */ headToVwrld.transform(this.xformRightEar);
/* 565 */ headToVwrld.transform(this.xformLeftEar);