We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5339b04 commit 371e973Copy full SHA for 371e973
plugin/platforms/android/java/com/akylas/canvas/CanvasMatrix.java
@@ -44,4 +44,10 @@ public void setValues (java.nio.FloatBuffer points) {
44
setValues(pointsArray);
45
points.rewind();
46
}
47
+ public void getValues (java.nio.FloatBuffer points) {
48
+ float[] pointsArray = new float[points.capacity()];
49
+ getValues(pointsArray);
50
+ points.put(pointsArray);
51
+ points.rewind();
52
+ }
53
0 commit comments