Skip to content

Commit

Permalink
Add fast alternative constructor for Vector3f (#5339)
Browse files Browse the repository at this point in the history
Signed-off-by: Irmo van den Berge <irmo.vandenberge@ziggo.nl>
  • Loading branch information
bergerkiller committed Mar 10, 2021
1 parent e849c51 commit 808bd91
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Irmo van den Berge <irmo.vandenberge@ziggo.nl>
Date: Wed, 10 Mar 2021 21:26:31 +0100
Subject: [PATCH] Add fast alternative constructor for Vector3f

Signed-off-by: Irmo van den Berge <irmo.vandenberge@ziggo.nl>

diff --git a/src/main/java/net/minecraft/server/Vector3f.java b/src/main/java/net/minecraft/server/Vector3f.java
index fa25e5d1530e099f73355c2779e0d57a51ad4b6e..c8de8056e60c159d85d14e80bdbf12f1dac9a621 100644
--- a/src/main/java/net/minecraft/server/Vector3f.java
+++ b/src/main/java/net/minecraft/server/Vector3f.java
@@ -16,6 +16,18 @@ public class Vector3f {
this(nbttaglist.i(0), nbttaglist.i(1), nbttaglist.i(2));
}

+ // Paper start - faster alternative constructor
+ private Vector3f(float x, float y, float z, Void dummy_var) {
+ this.x = x;
+ this.y = y;
+ this.z = z;
+ }
+
+ public static Vector3f createWithoutValidityChecks(float x, float y, float z) {
+ return new Vector3f(x, y, z, null);
+ }
+ // Paper end
+
public NBTTagList a() {
NBTTagList nbttaglist = new NBTTagList();

0 comments on commit 808bd91

Please sign in to comment.