Run prettier
This commit is contained in:
parent
9d4a9bc0b1
commit
6ede822d4a
@ -165,14 +165,20 @@ export class Circle {
|
||||
let rw = rect.size.w;
|
||||
let rh = rect.size.h;
|
||||
|
||||
if (cx < rx) { testX = rx; }
|
||||
else if (cx > rx + rw) { testX = rx + rw; }
|
||||
if (cy < ry) { testY = ry; }
|
||||
else if (cy > ry + rh) { testY = ry + rh; }
|
||||
if (cx < rx) {
|
||||
testX = rx;
|
||||
} else if (cx > rx + rw) {
|
||||
testX = rx + rw;
|
||||
}
|
||||
if (cy < ry) {
|
||||
testY = ry;
|
||||
} else if (cy > ry + rh) {
|
||||
testY = ry + rh;
|
||||
}
|
||||
|
||||
let distX = cx - testX;
|
||||
let distY = cy - testY;
|
||||
let sqDistance = (distX * distX) + (distY * distY);
|
||||
let sqDistance = distX * distX + distY * distY;
|
||||
|
||||
if (sqDistance <= this.radius * this.radius) {
|
||||
return new Point(testX, testY);
|
||||
@ -183,7 +189,7 @@ export class Circle {
|
||||
overlappedCells(size: Size): Rect[] {
|
||||
let meAsRect = new Rect(
|
||||
this.center.offset(new Point(-this.radius, -this.radius)),
|
||||
new Size(this.radius * 2, this.radius * 2)
|
||||
new Size(this.radius * 2, this.radius * 2),
|
||||
);
|
||||
let all: Rect[] = [];
|
||||
for (let cell of meAsRect.overlappedCells(size).values()) {
|
||||
|
@ -203,7 +203,7 @@ export class HuntMode {
|
||||
|
||||
let bbox = new Circle(this.floatingPlayer, szX / 2);
|
||||
let { displacement, dxy } = displace(bbox, this.velocity, (b: Circle) =>
|
||||
this.getContact(b)
|
||||
this.getContact(b),
|
||||
);
|
||||
this.floatingPlayer = this.floatingPlayer.offset(displacement);
|
||||
this.velocity = dxy;
|
||||
|
@ -25,7 +25,10 @@ export function displace(
|
||||
|
||||
let dot = dxy.x * nx + dxy.y * ny;
|
||||
if (redirections < nRedirections) {
|
||||
dxy = new Point(dxy.x - lerp(bounce, 1, 2) * dot * nx, dxy.y - lerp(bounce, 1, 2) * dot * ny);
|
||||
dxy = new Point(
|
||||
dxy.x - lerp(bounce, 1, 2) * dot * nx,
|
||||
dxy.y - lerp(bounce, 1, 2) * dot * ny,
|
||||
);
|
||||
i -= 1; // try again with reflection
|
||||
redirections += 1;
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user