西安二号线列车 三角形位置绘图调整
This commit is contained in:
parent
06dbabf05a
commit
108ec9ef83
@ -71,7 +71,8 @@ export default class ETriangle extends Group {
|
||||
zlevel: model.zlevel,
|
||||
z: model.z,
|
||||
shape: {
|
||||
points:[[model.point.x + 10 * right, model.point.y], [model.point.x, model.point.y - 6], [model.point.x, model.point.y + 6]]
|
||||
// points:[[model.point.x + 10 * right, model.point.y], [model.point.x, model.point.y - 6], [model.point.x, model.point.y + 6]]
|
||||
points:[[model.point.x, model.point.y], [model.point.x - 10 * right, model.point.y - 6], [model.point.x - 10 * right, model.point.y + 6]]
|
||||
},
|
||||
style: {
|
||||
stroke:'#00FF00',
|
||||
@ -88,9 +89,12 @@ export default class ETriangle extends Group {
|
||||
if (this.angle) {
|
||||
const trainRight = right == 1 ? 1 : -1;
|
||||
let data = [
|
||||
[model.x + 10 * trainRight, model.y],
|
||||
[model.x, model.y - 6],
|
||||
[model.x, model.y + 6]
|
||||
// [model.x + 10 * trainRight, model.y],
|
||||
// [model.x, model.y - 6],
|
||||
// [model.x, model.y + 6]
|
||||
[model.x, model.y],
|
||||
[model.x - 10 * trainRight, model.y - 6],
|
||||
[model.x - 10 * trainRight, model.y + 6]
|
||||
];
|
||||
if (this.style.Section.trainPosition.specialShow) {
|
||||
data = [
|
||||
|
Loading…
Reference in New Issue
Block a user