-
-
Notifications
You must be signed in to change notification settings - Fork 20
Closed
Description
In Chapter 7, the book says:
We need to modify the MeshData class to include texture coordinates:
package org.vulkanb.eng.model;
public record MeshData(String id, float[] positions, int[] indices) {
}
However, it does not actually show us the edits that need to be performed. The chapter should be revised to fit the code in the booksamples:
package org.vulkanb.eng.model;
public record MeshData(String id, float[] positions, float[] textCoords, int[] indices) {
}
Metadata
Metadata
Assignees
Labels
No labels