Files
aladin-lite/_canvas/js/Graticule.js
2014-10-23 07:07:36 +00:00

20 lines
475 B
JavaScript

/******************************************************************************
* Aladin HTML5 project
*
* File Graticule
* A coordinate grid
*
* Author: Thomas Boch[CDS]
*
*****************************************************************************/
Graticule = (function() {
var Graticule = function() {
this.nside = 8;
}
Graticule.prototype.redraw = function(ctx, projection, viewCenter, fov, width, height, zoomFactor) {
}
return Graticule;
})();