Skip to content

Commit

Permalink
Merge pull request #4636 from lasalvavida/gltf-1.0.1
Browse files Browse the repository at this point in the history
Merge master into gltf 1.0.1
  • Loading branch information
lilleyse authored Nov 11, 2016
2 parents 9d8f635 + ff84031 commit 8383f57
Show file tree
Hide file tree
Showing 407 changed files with 10,170 additions and 2,347 deletions.
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Thanks for contributing to the Cesium Community!

If you have a question, please search the forum:

http://cesiumjs.org/forum.html

and start a new forum thread, if needed, instead of creating this issue.

Otherwise, we look forward to your bug report or feature request in this issue.

---

Delete this message before clicking Submit.
1 change: 0 additions & 1 deletion .idea/cesium.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/jsLibraryMappings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 0 additions & 14 deletions .idea/libraries/cesium_node_modules.xml

This file was deleted.

1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/.externalToolBuilders
/.gitattributes
/.github
/.idea
/.metadata
/.npmignore
Expand Down
2 changes: 1 addition & 1 deletion Apps/CesiumViewer/CesiumViewer.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ body {
background-position: center;
background-repeat: no-repeat;
background-image: url(Images/ajax-loader.gif);
}
}
2 changes: 1 addition & 1 deletion Apps/CesiumViewer/CesiumViewerStartup.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ require({
}, [
'CesiumViewer'
], function() {
});
});
2 changes: 1 addition & 1 deletion Apps/CesiumViewer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
<div id="cesiumContainer" class="fullWindow"></div>
<div id="loadingIndicator" class="loadingIndicator"></div>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion Apps/HelloWorld.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
var viewer = new Cesium.Viewer('cesiumContainer');
</script>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion Apps/Sandcastle/CesiumSandcastle.css
Original file line number Diff line number Diff line change
Expand Up @@ -267,4 +267,4 @@ a.linkButton:focus, a.linkButton:hover {
width: 16px;
height: 16px;
text-align: center;
}
}
63 changes: 33 additions & 30 deletions Apps/Sandcastle/CesiumSandcastle.js
Original file line number Diff line number Diff line change
Expand Up @@ -1044,9 +1044,7 @@ require({
});
}

function loadDemoFromFile(index) {
var demo = gallery_demos[index];

function loadDemoFromFile(demo) {
return requestDemo(demo.name).then(function(value) {
// Store the file contents for later searching.
demo.code = value;
Expand Down Expand Up @@ -1092,7 +1090,7 @@ require({
content : demo.description.replace(/\\n/g, '<br/>')
});

addFileToTab(index);
addFileToTab(demo);
return demo;
});
}
Expand All @@ -1104,10 +1102,21 @@ require({
loading = false;
}

function addFileToGallery(index) {
function insertSortedById(parentTab, galleryButton) {
var child;
for (child = parentTab.lastChild; child !== null; child = child.previousSibling) {
if (galleryButton.id >= child.id) {
parentTab.insertBefore(galleryButton, child.nextSibling);
return;
}
}
parentTab.appendChild(galleryButton);
}

function addFileToGallery(demo) {
var searchDemos = dom.byId('searchDemos');
createGalleryButton(index, searchDemos, 'searchDemo');
return loadDemoFromFile(index);
insertSortedById(searchDemos, createGalleryButton(demo, 'searchDemo'));
return loadDemoFromFile(demo);
}

function onShowCallback() {
Expand All @@ -1116,8 +1125,7 @@ require({
};
}

function addFileToTab(index) {
var demo = gallery_demos[index];
function addFileToTab(demo) {
if (demo.label !== '') {
var labels = demo.label.split(',');
for (var j = 0; j < labels.length; j++) {
Expand All @@ -1134,13 +1142,12 @@ require({
}
var tabName = label + 'Demos';
var tab = dom.byId(tabName);
createGalleryButton(index, tab, tabName);
insertSortedById(tab, createGalleryButton(demo, tabName));
}
}
}

function createGalleryButton(index, tab, tabName) {
var demo = gallery_demos[index];
function createGalleryButton(demo, tabName) {
var imgSrc = 'templates/Gallery_tile.jpg';
if (Cesium.defined(demo.img)) {
imgSrc = 'gallery/' + demo.img;
Expand All @@ -1150,7 +1157,6 @@ require({
demoLink.id = demo.name + tabName;
demoLink.className = 'linkButton';
demoLink.href = 'gallery/' + encodeURIComponent(demo.name) + '.html';
tab.appendChild(demoLink);

if (demo.name === "Hello World") {
newDemo = demo;
Expand Down Expand Up @@ -1184,13 +1190,15 @@ require({
'<img src="' + imgSrc + '" class="demoTileThumbnail" alt="" onDragStart="return false;" />'
}).placeAt(demoLink);

on(dom.byId(demoLink.id), 'mouseover', function() {
on(demoLink, 'mouseover', function() {
scheduleGalleryTooltip(demo);
});

on(dom.byId(demoLink.id), 'mouseout', function() {
on(demoLink, 'mouseout', function() {
closeGalleryTooltip();
});

return demoLink;
}

var promise;
Expand All @@ -1212,18 +1220,11 @@ require({
var i;
var len = gallery_demos.length;

// Sort alphabetically. This will eventually be a user option.
gallery_demos.sort(function(a, b) {
var aName = a.name.toUpperCase();
var bName = b.name.toUpperCase();
return bName < aName ? 1 : bName > aName ? -1 : 0;
});

var queryInGalleryIndex = false;
var queryName = queryObject.src.replace('.html', '');
var promises = [];
for (i = 0; i < len; ++i) {
promises.push(addFileToGallery(i));
promises.push(addFileToGallery(gallery_demos[i]));
}

promise = all(promises).then(function(results) {
Expand All @@ -1247,17 +1248,19 @@ require({

var demos = dom.byId('allDemos');
for (i = 0; i < len; ++i) {
if (!/Development/i.test(gallery_demos[i].label)) {
createGalleryButton(i, demos, 'all');
var demo = gallery_demos[i];
if (!/Development/i.test(demo.label)) {
insertSortedById(demos, createGalleryButton(demo, 'all'));
}
}

if (!queryInGalleryIndex) {
gallery_demos.push({
name : queryName,
description : ''
});
return addFileToGallery(gallery_demos.length - 1);
var emptyDemo = {
name : queryName,
description : ''
};
gallery_demos.push(emptyDemo);
return addFileToGallery(emptyDemo);
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion Apps/Sandcastle/LinkButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ define([
(this.containerNode || this.focusNode).innerHTML = content;
}
});
});
});
2 changes: 1 addition & 1 deletion Apps/Sandcastle/Sandcastle-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,4 @@
'highlight' : 0
}, '*');
};
}());
}());
2 changes: 1 addition & 1 deletion Apps/Sandcastle/gallery/ArcGIS MapServer.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// Add an ArcGIS MapServer imagery layer
var imageryLayers = viewer.imageryLayers;
imageryLayers.addImageryProvider(new Cesium.ArcGisMapServerImageryProvider({
url : 'https://nationalmap.gov.au/proxy/http://www.ga.gov.au/gis/rest/services/earth_science/GA_Surface_Geology_of_Australia_WM/MapServer'
url : 'https://nationalmap.gov.au/proxy/http://services.ga.gov.au/site_3/rest/services/Electricity_Infrastructure/MapServer'
}));

// Start off looking at Australia.
Expand Down
13 changes: 5 additions & 8 deletions Apps/Sandcastle/gallery/CZML Path.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,7 @@
"outlineColor" : {
"rgba" : [0, 255, 255, 255]
},
"outlineWidth" : 5,
"polylineGlow" : {
"color" : {
"rgba" : [255, 255, 0, 255]
},
"glowPower" : 3
}
"outlineWidth" : 5
}
},
"width" : 8,
Expand All @@ -67,7 +61,10 @@
},
"billboard" : {
"image" : "data:image/png;base64,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",
"scale" : 1.5
"scale" : 1.5,
"eyeOffset": {
"cartesian": [ 0.0, 0.0, -10.0 ]
}
},
"position" : {
"epoch" : "2012-08-04T10:00:00Z",
Expand Down
15 changes: 12 additions & 3 deletions Apps/Sandcastle/gallery/Camera.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,19 @@
<style>
@import url(../templates/bucket.css);

#viewChanged {
#viewChanged, #cameraChanged {
display: none;
background-color: red;
color: white;
}
</style>
<div id="cesiumContainer" class="fullSize"></div>
<div id="loadingOverlay"><h1>Loading...</h1></div>
<div id="toolbar"><div id="viewChanged">View Changed</div></div><script id="cesium_sandcastle_script">
<div id="toolbar">
<div id="viewChanged">View Changed</div>
<div id="cameraChanged">Camera Changed</div>
</div>
<script id="cesium_sandcastle_script">
function startup(Cesium) {
'use strict';
//Sandcastle_Begin
Expand Down Expand Up @@ -190,6 +194,8 @@
});
}

var cameraChanged = document.getElementById('cameraChanged');

var removeChanged;

function cameraChanges() {
Expand All @@ -198,7 +204,8 @@
var i = 0;
removeChanged = viewer.camera.changed.addEventListener(function(percentage) {
++i;
console.log('camera changed: ' + i + ', ' + percentage);
cameraChanged.innerText = 'Camera Changed: ' + i + ', ' + percentage.toFixed(6);
cameraChanged.style.display = 'block';
});
}

Expand Down Expand Up @@ -311,6 +318,8 @@
if (Cesium.defined(removeChanged)) {
removeChanged();
removeChanged = undefined;

cameraChanged.style.display = 'none';
}

viewer.camera.lookAtTransform(Cesium.Matrix4.IDENTITY);
Expand Down
2 changes: 1 addition & 1 deletion Apps/Sandcastle/gallery/Cardboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
viewer.scene.globe.enableLighting = true;

viewer.terrainProvider = new Cesium.CesiumTerrainProvider({
url : '//assets.agi.com/stk-terrain/world',
url : 'https://assets.agi.com/stk-terrain/world',
requestVertexNormals : true
});

Expand Down
2 changes: 1 addition & 1 deletion Apps/Sandcastle/gallery/Circles and Ellipses.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@
}
</script>
</body>
</html>
</html>
Loading

0 comments on commit 8383f57

Please sign in to comment.