Skip to content

Commit

Permalink
fix mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
RedthMC committed Aug 16, 2024
1 parent 1a48e60 commit 957d356
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,6 @@ private static Vec3 getLerpedPos(Entity entity, float partialTicks) {
return new Vec3(entity.prevPosX + (entity.posX - entity.prevPosX) * (double) partialTicks, entity.prevPosY + (entity.posY - entity.prevPosY) * (double) partialTicks, entity.prevPosZ + (entity.posZ - entity.prevPosZ) * (double) partialTicks);
}

private static Vec3 getLerpOffset(Entity entity, float partialTicks) {
return new Vec3((entity.posX - entity.prevPosX) * (double) partialTicks, (entity.posY - entity.prevPosY) * (double) partialTicks, (entity.posZ - entity.prevPosZ) * (double) partialTicks);
}

private static Vec3 pointClampedIntoBox(Vec3 point, AxisAlignedBB box) {
double x = MathHelper.clamp_double(point.xCoord, box.minX, box.maxX);
double y = MathHelper.clamp_double(point.yCoord, box.minY, box.maxY);
Expand Down
File renamed without changes.

0 comments on commit 957d356

Please sign in to comment.