Changeset 23051
- Timestamp:
- 08/03/18 15:23:09 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/applyoptions.js
r22894 r23051 48 48 } //}}} 49 49 //{{{ Initialize colorbar canvas 50 ccanvasid = options.getfieldvalue('colorbarid', options.getfieldvalue('canvasid').replace('canvas','colorbar-canvas')); 50 let colorbarSlug = options.getfieldvalue('colorbarSlug', options.getfieldvalue('canvasid') + '-colorbar'); 51 ccanvasid = colorbarSlug + '-canvas'; 51 52 ccanvas = $('#'+ccanvasid)[0]; 52 53 cwidth = ccanvas.width*options.getfieldvalue('colorbarwidth', 1); … … 80 81 //}}} 81 82 //{{{ Draw colorbar labels 82 clabelsid = options.getfieldvalue('colorbarid', ccanvasid).replace('canvas','labels');83 clabelsid = colorbarSlug + '-labels'; 83 84 clabels = $('#'+clabelsid); 84 85 var clabelstring = ''; … … 98 99 //}}} 99 100 //{{{ Draw colorbar title 100 ctitleid = options.getfieldvalue('colorbarid', ccanvasid).replace('canvas','heading');101 ctitleid = colorbarSlug + '-heading'; 101 102 ctitle = $('#'+ctitleid); 102 if (options.exist('colorbar title')) { ctitle.html(options.getfieldvalue('colorbartitle')); }103 if (options.exist('colorbarHeader')) { ctitle.html(options.getfieldvalue('colorbarHeader')); } 103 104 //}}} 104 105 } … … 114 115 tcontext = tcanvas.getContext('2d'); 115 116 tgradient = tcontext.createLinearGradient(0, 0, 0, 256); 116 117 117 118 var cmap = options.getfieldvalue('colormap','jet'); 118 119 var colorbar = colorbars[cmap]; … … 124 125 tcontext.fillStyle = tgradient; 125 126 tcontext.fillRect(0, 0, 256, 256); 126 127 127 128 //Allow for special texture colors, drawing each color in equal width vertical rectangles. The last rectanglar section is reserved for the colormap. 128 129 if (options.exist('maskregion')) { … … 139 140 } 140 141 } 141 142 142 143 tURL = tcanvas.toDataURL(); 143 144 if (options.getfieldvalue('clf','on')=='off') { … … 161 162 overlaycanvas = canvas.overlaycanvas; 162 163 ctx = overlaycanvas.getContext('2d'); 163 164 164 165 if (options.exist('textlabels')) {//{{{ 165 166 //Attatch new overlay handler to display text labels … … 176 177 177 178 }; 178 179 179 180 // function declared in slr-gfm sim-front-end-controller.js 180 181 // if labels are behind the globe sphere then skip iteartion and do not display them … … 184 185 var x = (screenPoint[0] + 1.0) * (canvas.width / 2) + canvas.selector.offset().left; 185 186 var y = (-screenPoint[1] + 1.0) * (canvas.height / 2) + canvas.selector.offset().top; 186 187 187 188 //Draw text 188 189 ctx.font = 'bold ' + String(textLabel.fontSize) + 'px Arial Black, sans-serif'; … … 197 198 } 198 199 }//}}} 199 200 200 201 //{{{ additional rendering nodes 201 202 if (options.exist('render')) { … … 216 217 217 218 var renderObjects = options.getfieldvalue('render',{}); 218 219 219 220 for (var renderObject in renderObjects) { 220 221 //Modify renderObejct? … … 311 312 node.geometryShader('Mesh', mesh, 'Vertices', [object.x, object.y, object.z], 'Indices', object.indices); 312 313 } 313 if ('axis' === renderObject && !('axis' in canvas.nodes)) { 314 if ('axis' === renderObject && !('axis' in canvas.nodes)) { 314 315 node = new Node( 315 316 'canvas', canvas, … … 357 358 } 358 359 if ('clouds' === renderObject && !('clouds0' in canvas.nodes)) { 359 //clouds 360 //clouds 360 361 var mesh = GL.Mesh.fromURL(canvas.assetsPath + '/obj/cloud.obj'); 361 362 for (var i = 0; i < object.quantity; i++) { 362 363 //TODO: More options, less magic numbers. Add animation. Better shading. 363 var offset = [randomizeAxis(translation[0], object.range), 364 randomizeCloudHeight(translation[1], object), 364 var offset = [randomizeAxis(translation[0], object.range), 365 randomizeCloudHeight(translation[1], object), 365 366 randomizeAxis(translation[2], object.range)]; 366 367 var randomSize = randomizeCloudSize(object.scale); … … 394 395 'rotation', [0, 0, 0] 395 396 ); 396 397 397 398 //For each target city, calculate the shortest line across the earth by performing a quaternion slerp. 398 399 //Treat source and target city as vectors to rotate to from the north pole. … … 412 413 var targetXYZ = vec3.fromValues(xcity[target], zcity[target], -ycity[target]); 413 414 var axis = vec3.cross(vec3.create(), sourceXYZ, targetXYZ); 414 vec3.normalize(axis, axis); 415 415 vec3.normalize(axis, axis); 416 416 417 //Get the total angle between the two cities. 417 418 var sourceXYZAxis = vec3.normalize(vec3.create(), sourceXYZ); … … 419 420 var dotProduct = vec3.dot(sourceXYZAxis, targetXYZAxis); 420 421 var totalAngle = Math.acos(dotProduct); //theta = arccos(u . v / (||u|| * ||v||); in this case, ||u|| and ||v|| are 1, since u and v are unit vectors. 421 422 422 423 var lineQuat = quat.create(); 423 424 for (var j = 1; j <= lineSteps; j++) { … … 425 426 var angle = j / lineSteps * totalAngle; 426 427 quat.setAxisAngle(lineQuat, axis, angle); 427 quat.normalize(lineQuat, lineQuat); 428 quat.normalize(lineQuat, lineQuat); 428 429 vec3.transformQuat(lineXYZ, sourceXYZ, lineQuat); 429 430 //GL.LINES needs 2 points for each line - at the beginning, just use the sourceXYZ. … … 454 455 var minHeigth = object.height - 7000; 455 456 var randomHeight = (Math.random() * (maxHeight - minHeigth)) + minHeigth; 456 457 457 458 return canvasGroundHeight + randomHeight; 458 459 } … … 460 461 // assumes that originAxisValue is the mid-value between min and max. 461 462 function randomizeAxis(originAxisValue, range) { 462 return originAxisValue + (Math.random() - 0.5) * (range * 2); 463 return originAxisValue + (Math.random() - 0.5) * (range * 2); 463 464 } 464 465 … … 466 467 var maxResize = 1.3; 467 468 var minResize = 0.5; 468 var randomizationFactor = Math.random() * (maxResize - minResize) + minResize; 469 var randomizationFactor = Math.random() * (maxResize - minResize) + minResize; 469 470 return scale * randomizationFactor; 470 471 }
Note:
See TracChangeset
for help on using the changeset viewer.