reduced matter restitution, map item's ray is now responsive #2150
This commit is contained in:
@@ -56,6 +56,7 @@ export default {
|
||||
...mapState(ConcernementsStore,['concernements']),
|
||||
...mapState(ConcernementsStore,['concernementsByID']),
|
||||
...mapState(ConcernementsStore,['opened_concernement']),
|
||||
...mapState(CommonStore,['map_item_ray']),
|
||||
...mapState(CommonStore,['hover_elmt']),
|
||||
...mapState(CommonStore,['paper_symbol_definitions'])
|
||||
},
|
||||
@@ -207,7 +208,7 @@ export default {
|
||||
setPaperBoussoleBGSymbol(){
|
||||
// BOUSSOLE
|
||||
let children = [];
|
||||
let ray = 100;
|
||||
let ray = this.map_item_ray;
|
||||
let pos = {x:0, y:0};
|
||||
|
||||
// cercles pointillés
|
||||
@@ -353,7 +354,7 @@ export default {
|
||||
},
|
||||
setPaperPuissanceagirBGSymbol(){
|
||||
let children = [];
|
||||
let ray = 100;
|
||||
let ray = this.map_item_ray;
|
||||
let pos = {x:0,y:0};
|
||||
|
||||
// cercles interieur
|
||||
@@ -421,7 +422,7 @@ export default {
|
||||
});
|
||||
},
|
||||
setPaperDoleanceBGSymbol(){
|
||||
let ray = 100;
|
||||
let ray = this.map_item_ray;
|
||||
let pos = {x:0,y:0};
|
||||
var r = ray * 0.8; // ray
|
||||
var dr = r/2; // demi ray
|
||||
|
||||
Reference in New Issue
Block a user