Package org.robolectric.shadows
Class ShadowMatrix
java.lang.Object
org.robolectric.shadows.ShadowMatrix
- Direct Known Subclasses:
ShadowLegacyMatrix
,ShadowNativeMatrix
@Implements(value=android.graphics.Matrix.class,
shadowPicker=Picker.class)
public abstract class ShadowMatrix
extends Object
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract String
A list of all 'post' operations performed on this Matrix.A list of all 'pre' operations performed on this Matrix.A map of all 'set' operations performed on this Matrix.
-
Field Details
-
TRANSLATE
- See Also:
-
SCALE
- See Also:
-
ROTATE
- See Also:
-
SINCOS
- See Also:
-
SKEW
- See Also:
-
MATRIX
- See Also:
-
-
Constructor Details
-
ShadowMatrix
public ShadowMatrix()
-
-
Method Details
-
getPreOperations
A list of all 'pre' operations performed on this Matrix. The last operation performed will be first in the list.- Returns:
- A list of all 'pre' operations performed on this Matrix.
-
getPostOperations
A list of all 'post' operations performed on this Matrix. The last operation performed will be last in the list.- Returns:
- A list of all 'post' operations performed on this Matrix.
-
getSetOperations
A map of all 'set' operations performed on this Matrix.- Returns:
- A map of all 'set' operations performed on this Matrix.
-
getDescription
-