[Opengeoscience-developers] OpenGeoscience branch, next, updated. 6594223ea2eb74d5531d29402b9ed3496bcff0f8

Aashish Chaudhary aashish.chaudhary at kitware.com
Tue May 7 15:24:53 EDT 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OpenGeoscience".

The branch, next has been updated
       via  6594223ea2eb74d5531d29402b9ed3496bcff0f8 (commit)
       via  5459b64f4170b1f9b4826b9c3f6bdd3ef0b48678 (commit)
       via  cecca1e5c5dc512a38c15279b74cf1a12498fe05 (commit)
       via  b998e661ea3d6847bdcf9c2a2430ee42264e5da7 (commit)
       via  a935ec2e3a266c01f2e150d03fca7f91d7dc2a44 (commit)
       via  7c85d79e659131ad0657a5e1ce459e03bbc6c643 (commit)
       via  7205745fb51bbf7405d597d0321c98ebe6158243 (commit)
       via  81b1fecc6a4d9673002602444f8cb1a7f5f9c106 (commit)
       via  59e6e9562276ed44ecf8d7567d6605c6b76c7936 (commit)
       via  bbef7977571a2f54b94a6f66816fed0f766b3c73 (commit)
       via  d63cfd1bf5fe64eae2574edc4752094241f4ba4a (commit)
       via  2a1849709b2ac9ba50eb38178483561323b0eb18 (commit)
       via  9d47582ab90bbe141c68df5df4d21c80ac0384c7 (commit)
       via  1b27b5fb4d544e29d1327198e49d426cb60abbf1 (commit)
       via  ba75b62042a1bda4a4cc444f4b1d49ebc2a75253 (commit)
       via  5966a476d42a60a091c4f3da131c8531d1e76e25 (commit)
       via  55123aba2d47a70a392e33af0ce9453b8c65cad5 (commit)
       via  cff09a663d1eb353c4dd31238b1e9003fe75bd46 (commit)
       via  e706a5c3aebf8cb3cd8cbdd69eb10559ff5ab180 (commit)
      from  c9b0085245a2a2dadafa133b1241690c6da49f4b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://public.kitware.com/gitweb?p=OpenGeoscience/geoweb.git;a=commitdiff;h=6594223ea2eb74d5531d29402b9ed3496bcff0f8
commit 6594223ea2eb74d5531d29402b9ed3496bcff0f8
Merge: c9b0085 5459b64
Author: Aashish Chaudhary <aashish.chaudhary at kitware.com>
Date:   Tue May 7 15:24:21 2013 -0400

    Merge remote-tracking branch 'origin/bug_49_globe_rendering' into next
    
    * origin/bug_49_globe_rendering:
      Fixed calculation of zoom delta
      Fixing bugs with interactor
      Re-implementing map interactor style
      Implemented compute clipping range
      Fixed bounding calculation of group mapper
      Clean up the code for geodetic transformation
      Clean up code for bound calculation
      Minor fixes
      Fixed bounding box calculations
      Fixed various bugs related to wgs84 conversion
      Various fixes related to ellipsoid
      Fixed bugs and added new files to build
      Adding modules for geographic transformations
      Added module to freeze JS object
      Fixed documentation
      Added ability to interact with sphere
      First pass on getting globe rendering

 CMakeLists.txt                                     |   10 +-
 web/lib/geo/ellipsoid.js                           |  206 ++++++++++++++++++++
 web/lib/geo/map.js                                 |   31 +---
 web/lib/geo/mapInteractorStyle.js                  |   11 +-
 web/lib/vgl/boundingObject.js                      |    2 +
 web/lib/vgl/camera.js                              |   39 +++--
 web/lib/vgl/defaultValue.js                        |   19 ++
 web/lib/vgl/freezeObject.js                        |   23 +++
 web/lib/vgl/geomData.js                            |   39 +++--
 web/lib/vgl/groupMapper.js                         |    5 +-
 web/lib/vgl/mapper.js                              |    2 +-
 web/lib/vgl/renderer.js                            |   81 +++++++-
 web/lib/vgl/testing/CMakeLists.txt                 |    1 +
 web/lib/vgl/testing/drawSphere.html                |  102 ++++++++++
 web/lib/vgl/testing/drawTest1.html                 |    1 -
 .../trackballInteractorStyle.js}                   |   62 +++----
 web/lib/vgl/viewer.js                              |   21 ++
 17 files changed, 549 insertions(+), 106 deletions(-)

-----------------------------------------------------------------------

Summary of changes:
 CMakeLists.txt                                     |   10 +-
 web/lib/geo/ellipsoid.js                           |  206 ++++++++++++++++++++
 web/lib/geo/map.js                                 |   31 +---
 web/lib/geo/mapInteractorStyle.js                  |   11 +-
 web/lib/vgl/boundingObject.js                      |    2 +
 web/lib/vgl/camera.js                              |   39 +++--
 web/lib/vgl/defaultValue.js                        |   19 ++
 web/lib/vgl/freezeObject.js                        |   23 +++
 web/lib/vgl/geomData.js                            |   39 +++--
 web/lib/vgl/groupMapper.js                         |    5 +-
 web/lib/vgl/mapper.js                              |    2 +-
 web/lib/vgl/renderer.js                            |   81 +++++++-
 web/lib/vgl/testing/CMakeLists.txt                 |    1 +
 web/lib/vgl/testing/drawSphere.html                |  102 ++++++++++
 web/lib/vgl/testing/drawTest1.html                 |    1 -
 .../trackballInteractorStyle.js}                   |   62 +++----
 web/lib/vgl/viewer.js                              |   21 ++
 17 files changed, 549 insertions(+), 106 deletions(-)
 create mode 100644 web/lib/geo/ellipsoid.js
 create mode 100644 web/lib/vgl/defaultValue.js
 create mode 100644 web/lib/vgl/freezeObject.js
 create mode 100644 web/lib/vgl/testing/drawSphere.html
 copy web/lib/{geo/mapInteractorStyle.js => vgl/trackballInteractorStyle.js} (68%)


hooks/post-receive
-- 
OpenGeoscience



More information about the Opengeoscience-developers mailing list