mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-10 14:26:10 +01:00
0d2907e187
- Now individual components Translate Rotate and Scale - Internal change to ModelData, store matrices directly - Implement Translate Rotate and Scale for ModelData - Implement Translate and Rotate for OrientedData - Clean usages of ModelData to use new api when possible - WriteSafe and WriteUnsafe for matrices
7 lines
155 B
Java
7 lines
155 B
Java
package com.jozufozu.flywheel.util;
|
|
|
|
import com.jozufozu.flywheel.backend.gl.buffer.VecBuffer;
|
|
|
|
public interface WriteSafe {
|
|
void write(VecBuffer buf);
|
|
}
|