Package system.numerics
Class Matrix3x2
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.ValueType
-
- system.numerics.Matrix3x2
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class Matrix3x2 extends ValueType
The base .NET class managing System.Numerics.Matrix3x2, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Numerics.Matrix3x2
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798estatic java.lang.String
assemblyShortName
Assembly name: System.Private.CoreLibstatic java.lang.String
className
Qualified class name: System.Numerics.Matrix3x2static JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Matrix3x2
Add(Matrix3x2 value1, Matrix3x2 value2)
static Matrix3x2
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoMatrix3x2
, a cast assert is made to check if types are compatible.static Matrix3x2
CreateRotation(Single radians)
static Matrix3x2
CreateRotation(Single radians, Vector2 centerPoint)
static Matrix3x2
CreateScale(Vector2 scales)
static Matrix3x2
CreateScale(Vector2 scales, Vector2 centerPoint)
static Matrix3x2
CreateScale(Single scale)
static Matrix3x2
CreateScale(Single scale, Vector2 centerPoint)
static Matrix3x2
CreateScale(Single xScale, Single yScale)
static Matrix3x2
CreateScale(Single xScale, Single yScale, Vector2 centerPoint)
static Matrix3x2
CreateSkew(Single radiansX, Single radiansY)
static Matrix3x2
CreateSkew(Single radiansX, Single radiansY, Vector2 centerPoint)
static Matrix3x2
CreateTranslation(Vector2 position)
static Matrix3x2
CreateTranslation(Single xPosition, Single yPosition)
boolean
Equals(Matrix3x2 other)
Single
GetDeterminant()
static Matrix3x2
getIdentity()
boolean
getIsIdentity()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class TypeVector2
getTranslation()
static boolean
Invert(Matrix3x2 matrix, JCORefOut<Matrix3x2> result)
static Matrix3x2
Lerp(Matrix3x2 matrix1, Matrix3x2 matrix2, Single amount)
static Matrix3x2
Multiply(Matrix3x2 value1, Matrix3x2 value2)
static Matrix3x2
Multiply(Matrix3x2 value1, Single value2)
static Matrix3x2
Negate(Matrix3x2 value)
void
setJCOInstance(JCObject instance)
void
setTranslation(Vector2 Translation)
static Matrix3x2
Subtract(Matrix3x2 value1, Matrix3x2 value2)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Private.CoreLib- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Numerics.Matrix3x2- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Matrix3x2
public Matrix3x2(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
Matrix3x2
public Matrix3x2() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Matrix3x2
public Matrix3x2(Single m11, Single m12, Single m21, Single m22, Single m31, Single m32) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classValueType
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classValueType
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classValueType
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classValueType
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classValueType
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classValueType
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Matrix3x2 cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoMatrix3x2
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Matrix3x2
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Equals
public boolean Equals(Matrix3x2 other) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Invert
public static boolean Invert(Matrix3x2 matrix, JCORefOut<Matrix3x2> result) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
GetDeterminant
public Single GetDeterminant() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Add
public static Matrix3x2 Add(Matrix3x2 value1, Matrix3x2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
CreateRotation
public static Matrix3x2 CreateRotation(Single radians, Vector2 centerPoint) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArithmeticException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
ArithmeticException
-
CreateRotation
public static Matrix3x2 CreateRotation(Single radians) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArithmeticException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
ArithmeticException
-
CreateScale
public static Matrix3x2 CreateScale(Single xScale, Single yScale, Vector2 centerPoint) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
-
CreateScale
public static Matrix3x2 CreateScale(Single xScale, Single yScale) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
-
CreateScale
public static Matrix3x2 CreateScale(Single scale, Vector2 centerPoint) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
-
CreateScale
public static Matrix3x2 CreateScale(Single scale) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
-
CreateScale
public static Matrix3x2 CreateScale(Vector2 scales, Vector2 centerPoint) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
-
CreateScale
public static Matrix3x2 CreateScale(Vector2 scales) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
-
CreateSkew
public static Matrix3x2 CreateSkew(Single radiansX, Single radiansY, Vector2 centerPoint) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
CreateSkew
public static Matrix3x2 CreateSkew(Single radiansX, Single radiansY) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
CreateTranslation
public static Matrix3x2 CreateTranslation(Single xPosition, Single yPosition) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
-
CreateTranslation
public static Matrix3x2 CreateTranslation(Vector2 position) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
-
Lerp
public static Matrix3x2 Lerp(Matrix3x2 matrix1, Matrix3x2 matrix2, Single amount) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Multiply
public static Matrix3x2 Multiply(Matrix3x2 value1, Single value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Multiply
public static Matrix3x2 Multiply(Matrix3x2 value1, Matrix3x2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Negate
public static Matrix3x2 Negate(Matrix3x2 value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Subtract
public static Matrix3x2 Subtract(Matrix3x2 value1, Matrix3x2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
getIsIdentity
public boolean getIsIdentity() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
getIdentity
public static Matrix3x2 getIdentity() throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
-
getTranslation
public Vector2 getTranslation() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
setTranslation
public void setTranslation(Vector2 Translation) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
-