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.StringassemblyFullNameFully assembly qualified name: System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798estatic java.lang.StringassemblyShortNameAssembly name: System.Private.CoreLibstatic java.lang.StringclassNameQualified class name: System.Numerics.Matrix3x2static JCTypeclassTypeThe type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Matrix3x2Add(Matrix3x2 value1, Matrix3x2 value2)static Matrix3x2cast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoMatrix3x2, a cast assert is made to check if types are compatible.static Matrix3x2CreateRotation(Single radians)static Matrix3x2CreateRotation(Single radians, Vector2 centerPoint)static Matrix3x2CreateScale(Vector2 scales)static Matrix3x2CreateScale(Vector2 scales, Vector2 centerPoint)static Matrix3x2CreateScale(Single scale)static Matrix3x2CreateScale(Single scale, Vector2 centerPoint)static Matrix3x2CreateScale(Single xScale, Single yScale)static Matrix3x2CreateScale(Single xScale, Single yScale, Vector2 centerPoint)static Matrix3x2CreateSkew(Single radiansX, Single radiansY)static Matrix3x2CreateSkew(Single radiansX, Single radiansY, Vector2 centerPoint)static Matrix3x2CreateTranslation(Vector2 position)static Matrix3x2CreateTranslation(Single xPosition, Single yPosition)booleanEquals(Matrix3x2 other)SingleGetDeterminant()static Matrix3x2getIdentity()booleangetIsIdentity()java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class TypeVector2getTranslation()static booleanInvert(Matrix3x2 matrix, JCORefOut<Matrix3x2> result)static Matrix3x2Lerp(Matrix3x2 matrix1, Matrix3x2 matrix2, Single amount)static Matrix3x2Multiply(Matrix3x2 value1, Matrix3x2 value2)static Matrix3x2Multiply(Matrix3x2 value1, Single value2)static Matrix3x2Negate(Matrix3x2 value)voidsetJCOInstance(JCObject instance)voidsetTranslation(Vector2 Translation)static Matrix3x2Subtract(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.ThrowableInternal 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:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classValueType- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classValueType- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classValueType- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classValueType- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classValueType
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classValueType- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static Matrix3x2 cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoMatrix3x2, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
Matrix3x2instance- 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.ThrowableNotSupportedExceptionPlatformNotSupportedExceptionArithmeticException
-
CreateRotation
public static Matrix3x2 CreateRotation(Single radians) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArithmeticException
- Throws:
java.lang.ThrowableNotSupportedExceptionPlatformNotSupportedExceptionArithmeticException
-
CreateScale
public static Matrix3x2 CreateScale(Single xScale, Single yScale, Vector2 centerPoint) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.ThrowableNotSupportedExceptionPlatformNotSupportedException
-
CreateScale
public static Matrix3x2 CreateScale(Single xScale, Single yScale) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.ThrowableNotSupportedExceptionPlatformNotSupportedException
-
CreateScale
public static Matrix3x2 CreateScale(Single scale, Vector2 centerPoint) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.ThrowableNotSupportedExceptionPlatformNotSupportedException
-
CreateScale
public static Matrix3x2 CreateScale(Single scale) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.ThrowableNotSupportedExceptionPlatformNotSupportedException
-
CreateScale
public static Matrix3x2 CreateScale(Vector2 scales, Vector2 centerPoint) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.ThrowableNotSupportedExceptionPlatformNotSupportedException
-
CreateScale
public static Matrix3x2 CreateScale(Vector2 scales) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.ThrowableNotSupportedExceptionPlatformNotSupportedException
-
CreateSkew
public static Matrix3x2 CreateSkew(Single radiansX, Single radiansY, Vector2 centerPoint) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.ThrowablePlatformNotSupportedExceptionNotSupportedException
-
CreateSkew
public static Matrix3x2 CreateSkew(Single radiansX, Single radiansY) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.ThrowablePlatformNotSupportedExceptionNotSupportedException
-
CreateTranslation
public static Matrix3x2 CreateTranslation(Single xPosition, Single yPosition) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.ThrowableNotSupportedExceptionPlatformNotSupportedException
-
CreateTranslation
public static Matrix3x2 CreateTranslation(Vector2 position) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.ThrowableNotSupportedExceptionPlatformNotSupportedException
-
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.ThrowableNotSupportedExceptionPlatformNotSupportedException
-
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
-
-