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
9 lines
203 B
Java
9 lines
203 B
Java
package com.jozufozu.flywheel.util;
|
|
|
|
public interface WriteUnsafe {
|
|
|
|
/**
|
|
* Write the contents of this object into sequential memory starting at the given address.
|
|
*/
|
|
void writeUnsafe(long addr);
|
|
}
|