mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2026-01-18 15:57:45 -08:00
20 lines
475 B
JavaScript
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;
|
|
})(); |