mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2025-12-12 15:49:18 -08:00
First commit for 3.7.0
* add MOC setable properties: fill, edge and perimeter * change package.json to 3.7.0-beta
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
"homepage": "https://aladin.u-strasbg.fr/",
|
||||
"name": "aladin-lite",
|
||||
"type": "module",
|
||||
"version": "3.6.5",
|
||||
"version": "3.7.0-beta",
|
||||
"description": "An astronomical HiPS visualizer in the browser",
|
||||
"author": "Thomas Boch and Matthieu Baumann",
|
||||
"license": "GPL-3",
|
||||
|
||||
@@ -3,7 +3,7 @@ name = "aladin-lite"
|
||||
description = "Aladin Lite v3 introduces a new graphical engine written in Rust with the use of WebGL"
|
||||
license = "BSD-3-Clause"
|
||||
repository = "https://github.com/cds-astro/aladin-lite"
|
||||
version = "3.6.5"
|
||||
version = "3.7.0"
|
||||
authors = [ "baumannmatthieu0@gmail.com", "matthieu.baumann@astro.unistra.fr",]
|
||||
edition = "2018"
|
||||
|
||||
|
||||
@@ -219,6 +219,33 @@ export let MOC = (function() {
|
||||
this.reportChange();
|
||||
}
|
||||
},
|
||||
perimeter: {
|
||||
get() {
|
||||
return this._perimeter;
|
||||
},
|
||||
set(perimeter) {
|
||||
this._perimeter = perimeter;
|
||||
this.reportChange();
|
||||
}
|
||||
},
|
||||
fill: {
|
||||
get() {
|
||||
return this._fill;
|
||||
},
|
||||
set(fill) {
|
||||
this._fill = fill;
|
||||
this.reportChange();
|
||||
}
|
||||
},
|
||||
edge: {
|
||||
get() {
|
||||
return this._edge;
|
||||
},
|
||||
set(edge) {
|
||||
this._edge = edge;
|
||||
this.reportChange();
|
||||
}
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user