diff --git a/library/models/phy/phy.py b/library/models/phy/phy.py index fb9325af..ed5527c9 100644 --- a/library/models/phy/phy.py +++ b/library/models/phy/phy.py @@ -151,11 +151,6 @@ def get_vertex_data(buffer: Buffer, convex_leaf: ConvexLeaf, vertex_count): vertex_data = np.frombuffer(buffer.read(4 * 4 * vertex_count), np.float32).copy() vertex_data = vertex_data.reshape((-1, 4))[:, :3] - y = vertex_data[:, 1].copy() - z = vertex_data[:, 2].copy() - vertex_data[:, 1] = z - vertex_data[:, 2] = y - return vertex_data