Package system.numerics
Class Vector2
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.ValueType
-
- system.numerics.Vector2
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class Vector2 extends ValueType
The base .NET class managing System.Numerics.Vector2, 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.Vector2
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.Vector2static JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Vector2
Abs(Vector2 value)
static Vector2
Add(Vector2 left, Vector2 right)
static Vector2
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoVector2
, a cast assert is made to check if types are compatible.static Vector2
Clamp(Vector2 value1, Vector2 min, Vector2 max)
static Vector2
ClampNative(Vector2 value1, Vector2 min, Vector2 max)
static Vector2
CopySign(Vector2 value, Vector2 sign)
void
CopyTo(Single[] array)
void
CopyTo(Single[] array, int index)
static Vector2
Cos(Vector2 vector)
static Vector2
Create(Single value)
static Vector2
Create(Single x, Single y)
static Vector2
DegreesToRadians(Vector2 degrees)
static Single
Distance(Vector2 value1, Vector2 value2)
static Single
DistanceSquared(Vector2 value1, Vector2 value2)
static Vector2
Divide(Vector2 left, Vector2 right)
static Vector2
Divide(Vector2 left, Single divisor)
static Single
Dot(Vector2 value1, Vector2 value2)
boolean
Equals(Vector2 other)
static Vector2
Exp(Vector2 vector)
static Vector2
FusedMultiplyAdd(Vector2 left, Vector2 right, Vector2 addend)
static Vector2
getE()
static Vector2
getEpsilon()
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 Typestatic Vector2
getNaN()
static Vector2
getNegativeInfinity()
static Vector2
getNegativeZero()
static Vector2
getOne()
static Vector2
getPi()
static Vector2
getPositiveInfinity()
static Vector2
getTau()
static Vector2
getUnitX()
static Vector2
getUnitY()
static Vector2
getZero()
static Vector2
Hypot(Vector2 x, Vector2 y)
Single
Length()
Single
LengthSquared()
static Vector2
Lerp(Vector2 value1, Vector2 value2, Vector2 amount)
static Vector2
Lerp(Vector2 value1, Vector2 value2, Single amount)
static Vector2
Log(Vector2 vector)
static Vector2
Log2(Vector2 vector)
static Vector2
Max(Vector2 value1, Vector2 value2)
static Vector2
MaxMagnitude(Vector2 value1, Vector2 value2)
static Vector2
MaxMagnitudeNumber(Vector2 value1, Vector2 value2)
static Vector2
MaxNative(Vector2 value1, Vector2 value2)
static Vector2
MaxNumber(Vector2 value1, Vector2 value2)
static Vector2
Min(Vector2 value1, Vector2 value2)
static Vector2
MinMagnitude(Vector2 value1, Vector2 value2)
static Vector2
MinMagnitudeNumber(Vector2 value1, Vector2 value2)
static Vector2
MinNative(Vector2 value1, Vector2 value2)
static Vector2
MinNumber(Vector2 value1, Vector2 value2)
static Vector2
Multiply(Vector2 left, Vector2 right)
static Vector2
Multiply(Vector2 left, Single right)
static Vector2
Multiply(Single left, Vector2 right)
static Vector2
MultiplyAddEstimate(Vector2 left, Vector2 right, Vector2 addend)
static Vector2
Negate(Vector2 value)
static Vector2
Normalize(Vector2 value)
static Vector2
RadiansToDegrees(Vector2 radians)
static Vector2
Reflect(Vector2 vector, Vector2 normal)
static Vector2
Round(Vector2 vector)
static Vector2
Round(Vector2 vector, MidpointRounding mode)
void
setJCOInstance(JCObject instance)
static Vector2
Sin(Vector2 vector)
static Vector2
SquareRoot(Vector2 value)
static Vector2
Subtract(Vector2 left, Vector2 right)
java.lang.String
ToString(java.lang.String format)
java.lang.String
ToString(java.lang.String format, IFormatProvider formatProvider)
static Vector2
Transform(Vector2 position, Matrix3x2 matrix)
static Vector2
Transform(Vector2 position, Matrix4x4 matrix)
static Vector2
Transform(Vector2 value, Quaternion rotation)
static Vector2
TransformNormal(Vector2 normal, Matrix3x2 matrix)
static Vector2
TransformNormal(Vector2 normal, Matrix4x4 matrix)
static Vector2
Truncate(Vector2 vector)
-
-
-
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.Vector2- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Vector2
public Vector2(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
Vector2
public Vector2() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Vector2
public Vector2(Single x, Single y) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
-
Vector2
public Vector2(Single value) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
-
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 Vector2 cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoVector2
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Vector2
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Equals
public boolean Equals(Vector2 other) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
Distance
public static Single Distance(Vector2 value1, Vector2 value2) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
DistanceSquared
public static Single DistanceSquared(Vector2 value1, Vector2 value2) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
Dot
public static Single Dot(Vector2 value1, Vector2 value2) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
Length
public Single Length() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
ArgumentOutOfRangeException
-
LengthSquared
public Single LengthSquared() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
ArgumentOutOfRangeException
-
Abs
public static Vector2 Abs(Vector2 value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Add
public static Vector2 Add(Vector2 left, Vector2 right) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
Clamp
public static Vector2 Clamp(Vector2 value1, Vector2 min, Vector2 max) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
ClampNative
public static Vector2 ClampNative(Vector2 value1, Vector2 min, Vector2 max) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
CopySign
public static Vector2 CopySign(Vector2 value, Vector2 sign) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, OverflowException
-
Cos
public static Vector2 Cos(Vector2 vector) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
Create
public static Vector2 Create(Single x, Single y) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
Create
public static Vector2 Create(Single value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
-
DegreesToRadians
public static Vector2 DegreesToRadians(Vector2 degrees) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Divide
public static Vector2 Divide(Vector2 left, Single divisor) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
Divide
public static Vector2 Divide(Vector2 left, Vector2 right) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
Exp
public static Vector2 Exp(Vector2 vector) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
FusedMultiplyAdd
public static Vector2 FusedMultiplyAdd(Vector2 left, Vector2 right, Vector2 addend) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Hypot
public static Vector2 Hypot(Vector2 x, Vector2 y) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Lerp
public static Vector2 Lerp(Vector2 value1, Vector2 value2, Single amount) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
Lerp
public static Vector2 Lerp(Vector2 value1, Vector2 value2, Vector2 amount) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Log
public static Vector2 Log(Vector2 vector) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
Log2
public static Vector2 Log2(Vector2 vector) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
Max
public static Vector2 Max(Vector2 value1, Vector2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
MaxMagnitude
public static Vector2 MaxMagnitude(Vector2 value1, Vector2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
MaxMagnitudeNumber
public static Vector2 MaxMagnitudeNumber(Vector2 value1, Vector2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
MaxNative
public static Vector2 MaxNative(Vector2 value1, Vector2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
MaxNumber
public static Vector2 MaxNumber(Vector2 value1, Vector2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Min
public static Vector2 Min(Vector2 value1, Vector2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
MinMagnitude
public static Vector2 MinMagnitude(Vector2 value1, Vector2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
MinMagnitudeNumber
public static Vector2 MinMagnitudeNumber(Vector2 value1, Vector2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
MinNative
public static Vector2 MinNative(Vector2 value1, Vector2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
MinNumber
public static Vector2 MinNumber(Vector2 value1, Vector2 value2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Multiply
public static Vector2 Multiply(Single left, Vector2 right) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
-
Multiply
public static Vector2 Multiply(Vector2 left, Single right) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
Multiply
public static Vector2 Multiply(Vector2 left, Vector2 right) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
MultiplyAddEstimate
public static Vector2 MultiplyAddEstimate(Vector2 left, Vector2 right, Vector2 addend) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Negate
public static Vector2 Negate(Vector2 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
Normalize
public static Vector2 Normalize(Vector2 value) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
ArgumentOutOfRangeException
-
RadiansToDegrees
public static Vector2 RadiansToDegrees(Vector2 radians) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Reflect
public static Vector2 Reflect(Vector2 vector, Vector2 normal) throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
ArgumentOutOfRangeException
-
Round
public static Vector2 Round(Vector2 vector, MidpointRounding mode) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException
-
Round
public static Vector2 Round(Vector2 vector) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Sin
public static Vector2 Sin(Vector2 vector) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
SquareRoot
public static Vector2 SquareRoot(Vector2 value) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Subtract
public static Vector2 Subtract(Vector2 left, Vector2 right) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
Transform
public static Vector2 Transform(Vector2 position, Matrix3x2 matrix) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Transform
public static Vector2 Transform(Vector2 position, Matrix4x4 matrix) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Transform
public static Vector2 Transform(Vector2 value, Quaternion rotation) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
TransformNormal
public static Vector2 TransformNormal(Vector2 normal, Matrix3x2 matrix) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
TransformNormal
public static Vector2 TransformNormal(Vector2 normal, Matrix4x4 matrix) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Truncate
public static Vector2 Truncate(Vector2 vector) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
ToString
public java.lang.String ToString(java.lang.String format, IFormatProvider formatProvider) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, NullReferenceException, NotSupportedException, ArrayTypeMismatchException, FormatException
-
ToString
public java.lang.String ToString(java.lang.String format) throws java.lang.Throwable, ArgumentNullException, OutOfMemoryException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, NotSupportedException, ArrayTypeMismatchException, FormatException, ArgumentOutOfRangeException
-
CopyTo
public void CopyTo(Single[] array, int index) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
CopyTo
public void CopyTo(Single[] array) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
getE
public static Vector2 getE() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
getEpsilon
public static Vector2 getEpsilon() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
getNaN
public static Vector2 getNaN() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
getNegativeInfinity
public static Vector2 getNegativeInfinity() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
getNegativeZero
public static Vector2 getNegativeZero() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
getOne
public static Vector2 getOne() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
getPi
public static Vector2 getPi() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
getPositiveInfinity
public static Vector2 getPositiveInfinity() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
getTau
public static Vector2 getTau() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
getUnitX
public static Vector2 getUnitX() throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
PlatformNotSupportedException
-
getUnitY
public static Vector2 getUnitY() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
-
getZero
public static Vector2 getZero() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-