NPlr
This commit is contained in:
parent
4520650c98
commit
8e25e28b26
@ -16594,33 +16594,37 @@ let why_ns = 0;
|
|||||||
}
|
}
|
||||||
T.aX.prototype = {
|
T.aX.prototype = {
|
||||||
aK(a, b, c, d, e, f, g, h) {
|
aK(a, b, c, d, e, f, g, h) {
|
||||||
var s, r, q, p = this,
|
var s, r, q, this_ = this,
|
||||||
o = p.e
|
tmp = this_.e
|
||||||
if (o instanceof T.Plr) {
|
// caster
|
||||||
|
if (tmp instanceof T.Plr) {
|
||||||
s = new T.NPlr()
|
s = new T.NPlr()
|
||||||
s.a = o.e
|
s.a = tmp.e
|
||||||
p.e = s
|
this_.e = s
|
||||||
}
|
}
|
||||||
o = p.f
|
// target
|
||||||
if (o instanceof T.Plr) {
|
tmp = this_.f
|
||||||
|
if (tmp instanceof T.Plr) {
|
||||||
s = new T.NPlr()
|
s = new T.NPlr()
|
||||||
s.a = o.e
|
s.a = tmp.e
|
||||||
p.f = s
|
this_.f = s
|
||||||
}
|
}
|
||||||
o = p.x
|
// param
|
||||||
if (o instanceof T.Plr) {
|
tmp = this_.x
|
||||||
|
if (tmp instanceof T.Plr) {
|
||||||
s = new T.NPlr()
|
s = new T.NPlr()
|
||||||
s.a = o.e
|
s.a = tmp.e
|
||||||
p.x = s
|
this_.x = s
|
||||||
}
|
}
|
||||||
o = p.r
|
// targets2
|
||||||
if (o != null)
|
tmp = this_.r
|
||||||
for (r = $.a(); r < o.length; ++r) {
|
if (tmp != null)
|
||||||
s = o[r]
|
for (r = $.a(); r < tmp.length; ++r) {
|
||||||
|
s = tmp[r]
|
||||||
if (s instanceof T.Plr) {
|
if (s instanceof T.Plr) {
|
||||||
q = new T.NPlr()
|
q = new T.NPlr()
|
||||||
q.a = s.e
|
q.a = s.e
|
||||||
o[r] = q
|
tmp[r] = q
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user