Commit Graph

42467 Commits

Author SHA1 Message Date
Matthew Amato 8706adceff Merge branch 'master' into viewer 2012-05-09 09:41:24 -04:00
Matthew Amato 879d28b0a6 Label fill and outline color properties should compare rgba properties rather than reference equality. 2012-05-09 09:37:15 -04:00
Scott Hunter 0c47515dd1 Use relative path for dependencies.
Also fix typos.
2012-05-08 17:44:57 -04:00
Ed Mackey df9c901e61 Sandcastle - Tweak loading screen. 2012-05-08 16:09:00 -04:00
Matthew Amato bfefefa8e7 Have DynamicProperty expose a cacheable property indicating if getValue will always return the same result. 2012-05-08 15:59:53 -04:00
Matthew Amato 9b26d58007 Fix formatting for files that only live in the viewer branch. 2012-05-08 15:39:51 -04:00
Ed Mackey 2a865bf6a5 Sandcastle - Rearrange toolbar 2012-05-08 14:43:57 -04:00
Ed Mackey 117bad0743 Update loading screen 2012-05-08 12:15:22 -04:00
Matthew Amato 00e2e8408d Initial submit of label visualizer. 2012-05-08 09:56:22 -04:00
Patrick Cozzi 05eb87b263 Updated README.md to reflect new and upcoming wiki pages. 2012-05-08 09:31:25 -04:00
Ed Mackey 66366b092c Initial submit of skeleton UI for new Sandcastle (to replace Sandbox). 2012-05-07 18:05:47 -04:00
Ed Mackey fffad715bb Merge commit '1a8aa04b9da06565ae84abee6aa0395c9773d2b8' into re-sandbox 2012-05-07 16:44:56 -04:00
Matthew Amato 5b382648f4 Merge branch 'master' into viewer 2012-05-07 15:56:22 -04:00
Matthew Amato 8c552a605e Ongoing Cesium Viewer work.
1. Introduce a new Clock object for keeping track of time.
2. Initial submit of Cesium Viewer application and dojo Widget, not much there yet.
2012-05-07 15:50:52 -04:00
Scott Hunter bdbc061424 Upgrade NodeJS to 0.6.17. 2012-05-07 15:41:57 -04:00
Scott Hunter edfdbc036e Add license information for almond/RequireJS.
Also update TweenJS license with latest copyright statement.
2012-05-07 14:40:19 -04:00
Matthew Amato 488f956ee4 Merge branch 'master' into viewer 2012-05-06 18:46:32 -04:00
Matthew Amato a2804faeb8 Additional fix for previous botched merge. 2012-05-05 12:24:25 -04:00
Dan Bagnell 210631057d Fix error in central body vertex shader found by @pjcozzi. 2012-05-04 20:37:53 -04:00
Dan Bagnell f09e5946b9 Fix bad merge: master -> imagery. 2012-05-04 20:34:15 -04:00
Dan Bagnell 83fd34ef7a Merge pull request #13 from AnalyticalGraphicsInc/stamen
Added Sandbox example for Stamen maps.
2012-05-04 17:06:11 -07:00
Matthew Amato 6397f0c01e Merge branch 'master' into viewer 2012-05-04 19:45:30 -04:00
Matthew Amato 1a8aa04b9d Initial submit of dojo 1.7.2 2012-05-04 19:41:49 -04:00
Matthew Amato c3c4cf71d8 Fix interval creation after my last merge from master. 2012-05-04 19:36:40 -04:00
Patrick Cozzi 0b45f9619c Merge pull request #6 from AnalyticalGraphicsInc/imagery
Imagery
2012-05-04 16:24:15 -07:00
Patrick Cozzi 783c3a3382 Added Sandbox example for Stamen maps. Added custom credit string to OpenStreetMapTileProvider. 2012-05-04 19:08:16 -04:00
Dan Bagnell cfb2b186e4 Merge branch 'master' into imagery
Conflicts:
	Source/Scene/CentralBody.js
2012-05-04 17:47:01 -04:00
Dan Bagnell 0c4b89c380 Make the provider's height default to 0 for the composite tile provider and remove the logo if the function getLogo is undefined. 2012-05-04 17:42:26 -04:00
Dan Bagnell c90e9dcf07 Fix popping effect when morphing to 3D. 2012-05-04 17:14:55 -04:00
Matthew Amato 36fac51ef0 Merge branch 'master' into viewer 2012-05-04 15:03:19 -04:00
Patrick Cozzi c1c28f54bc Merge pull request #12 from AnalyticalGraphicsInc/ISO8601
Complete re-implementation of JulianDate.parseIso8601
2012-05-04 11:18:20 -07:00
Matthew Amato d4aed3a48b More clean-up to JulianDate
1. Better detect other forms of invalid input.
2. Fix a few cases where valid input is handleded incorrectly.
3. Additional tests for both of the above.
2012-05-04 13:46:54 -04:00
Scott Hunter 592e31e399 Fix formatting. 2012-05-04 11:26:57 -04:00
Matthew Amato 2c598523d4 Additional cleanup for JulianDate.fromIso8601. 2012-05-04 00:50:18 -04:00
Matthew Amato 673d9910ee Merge branch 'master' into viewer 2012-05-03 19:51:27 -04:00
Matthew Amato 84a50d215b Merge remote-tracking branch 'origin/master' into ISO8601 2012-05-03 19:44:26 -04:00
Matthew Amato 5eb8e6a39b Merge branch 'ISO8601' of github.com:AnalyticalGraphicsInc/cesium into ISO8601
Conflicts:
	Source/Core/JulianDate.js
2012-05-03 19:43:11 -04:00
Matthew Amato ffa88cb8ab Complete re-implementation of JulianDate.fromIso8601
1. Takes into account all formats defined in the ISO8601 standard, including those not supported by Date.parse.
2. Supports leap seconds and sub-millisecond times.
3. Break out isLeapYear into a seperate helper function.
4. Remove toYearFraction as it has problems and is unused.
5. Write a bunch of new tests.

This does NOT add support for more than 4 digit years, as that is a variant of the standard that requires an agreed upon number of digits that we have not settled on yet.  This means that we can't yet support times before 1 B.C. or after 9999 AD.  This will be added in the future.
2012-05-03 19:42:01 -04:00
Matthew Amato a2f7920fd1 Complete re-implementation of JulianDate.fromIso8601
1. Takes into account all formats defined in the ISO8601 standard, including those not supported by Date.parse.
2. Supports leap seconds and sub-millisecond times.
3. Break out isLeapYear into a seperate helper function.
4. Remove toYearFraction as it has problems and is unused.
5. Write a bunch of new tests.

This does NOT add support for more than 4 digit years, as that is a variant of the standard that requires an agreed upon number of digits that we have not settled on yet.  This means that we can't yet support times before 1 B.C. or after 9999 AD.  This will be added in the future.
2012-05-03 19:25:37 -04:00
Scott Hunter 5dc6c31273 Add tests for Queue. 2012-05-03 18:04:59 -04:00
kristiancalhoun 77115defbc More doc fixes.
destroy() returns undefined, not null.
2012-05-03 17:55:37 -04:00
kristiancalhoun 8646b0ea37 Merge branch 'master' of github.com:AnalyticalGraphicsInc/cesium 2012-05-03 17:42:53 -04:00
kristiancalhoun ce9f4b070c Fixed doc bug.
destroy() returns undefined, not null.
2012-05-03 17:41:50 -04:00
Scott Hunter 03bdf7d31d We don't need this if Windows users set core.autocrlf=true which we state in the Contributor's Guide. 2012-05-03 17:18:03 -04:00
Scott Hunter f816c279ca Replace ThirdParty/Queue with an implementation in Core with more features. Use Queues in CentralBody instead of arrays. 2012-05-03 16:56:44 -04:00
Scott Hunter f02ac4e7cc Prevent event handler tests from hijacking mouse input. 2012-05-03 16:56:43 -04:00
Ed Mackey 39ab39c930 Cleanup README.md 2012-05-03 16:34:00 -04:00
Ed Mackey 7bb25f161f Update README.md with CZML and Wiki links. 2012-05-03 16:31:47 -04:00
Matthew Amato b17f60a87a Fix problems with last submit. 2012-05-03 09:29:33 -04:00
Patrick Cozzi a607cb7dd4 Merge pull request #5 from AnalyticalGraphicsInc/macos
More fixes for MacOS X 10.6
2012-05-03 03:57:08 -07:00