Package system.numerics
Class Vector3
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.ValueType
-
- system.numerics.Vector3
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class Vector3 extends ValueType
The base .NET class managing System.Numerics.Vector3, System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Numerics.Vector3
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.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.StringassemblyShortNameAssembly name: System.Numericsstatic java.lang.StringclassNameQualified class name: System.Numerics.Vector3static JCTypeclassTypeThe type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Vector3Abs(Vector3 value)static Vector3Add(Vector3 left, Vector3 right)static Vector3cast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoVector3, a cast assert is made to check if types are compatible.static Vector3Clamp(Vector3 value1, Vector3 min, Vector3 max)voidCopyTo(Single[] array)voidCopyTo(Single[] array, int index)static Vector3Cross(Vector3 vector1, Vector3 vector2)static SingleDistance(Vector3 value1, Vector3 value2)static SingleDistanceSquared(Vector3 value1, Vector3 value2)static Vector3Divide(Vector3 left, Vector3 right)static Vector3Divide(Vector3 left, Single divisor)static SingleDot(Vector3 vector1, Vector3 vector2)booleanEquals(Vector3 other)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 Typestatic Vector3getOne()static Vector3getUnitX()static Vector3getUnitY()static Vector3getUnitZ()static Vector3getZero()SingleLength()SingleLengthSquared()static Vector3Lerp(Vector3 value1, Vector3 value2, Single amount)static Vector3Max(Vector3 value1, Vector3 value2)static Vector3Min(Vector3 value1, Vector3 value2)static Vector3Multiply(Vector3 left, Vector3 right)static Vector3Multiply(Vector3 left, Single right)static Vector3Multiply(Single left, Vector3 right)static Vector3Negate(Vector3 value)static Vector3Normalize(Vector3 value)static Vector3Reflect(Vector3 vector, Vector3 normal)voidsetJCOInstance(JCObject instance)static Vector3SquareRoot(Vector3 value)static Vector3Subtract(Vector3 left, Vector3 right)java.lang.StringToString(java.lang.String format)java.lang.StringToString(java.lang.String format, IFormatProvider formatProvider)static Vector3Transform(Vector3 position, Matrix4x4 matrix)static Vector3Transform(Vector3 value, Quaternion rotation)static Vector3TransformNormal(Vector3 normal, Matrix4x4 matrix)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Numerics- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Numerics.Vector3- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Vector3
public Vector3(java.lang.Object instance) throws java.lang.ThrowableInternal constructor. Use with caution- Throws:
java.lang.Throwable
-
Vector3
public Vector3() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
Vector3
public Vector3(Single value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Vector3
public Vector3(Single x, Single y, Single z) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-
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 Vector3 cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoVector3, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
Vector3instance- Throws:
java.lang.Throwable- in case of error during cast operation
-
Equals
public boolean Equals(Vector3 other) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Distance
public static Single Distance(Vector3 value1, Vector3 value2) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
DistanceSquared
public static Single DistanceSquared(Vector3 value1, Vector3 value2) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Dot
public static Single Dot(Vector3 vector1, Vector3 vector2) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Length
public Single Length() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
LengthSquared
public Single LengthSquared() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Abs
public static Vector3 Abs(Vector3 value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Add
public static Vector3 Add(Vector3 left, Vector3 right) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Clamp
public static Vector3 Clamp(Vector3 value1, Vector3 min, Vector3 max) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Cross
public static Vector3 Cross(Vector3 vector1, Vector3 vector2) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Divide
public static Vector3 Divide(Vector3 left, Single divisor) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Divide
public static Vector3 Divide(Vector3 left, Vector3 right) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Lerp
public static Vector3 Lerp(Vector3 value1, Vector3 value2, Single amount) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Max
public static Vector3 Max(Vector3 value1, Vector3 value2) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Min
public static Vector3 Min(Vector3 value1, Vector3 value2) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Multiply
public static Vector3 Multiply(Single left, Vector3 right) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Multiply
public static Vector3 Multiply(Vector3 left, Single right) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Multiply
public static Vector3 Multiply(Vector3 left, Vector3 right) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Negate
public static Vector3 Negate(Vector3 value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Normalize
public static Vector3 Normalize(Vector3 value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Reflect
public static Vector3 Reflect(Vector3 vector, Vector3 normal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SquareRoot
public static Vector3 SquareRoot(Vector3 value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Subtract
public static Vector3 Subtract(Vector3 left, Vector3 right) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Transform
public static Vector3 Transform(Vector3 position, Matrix4x4 matrix) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Transform
public static Vector3 Transform(Vector3 value, Quaternion rotation) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
TransformNormal
public static Vector3 TransformNormal(Vector3 normal, Matrix4x4 matrix) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
ToString
public java.lang.String ToString(java.lang.String format) throws java.lang.Throwable, ArgumentNullException, TypeLoadException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, CultureNotFoundException, ArgumentOutOfRangeException, OutOfMemoryException
-
ToString
public java.lang.String ToString(java.lang.String format, IFormatProvider formatProvider) throws java.lang.Throwable, ArgumentNullException, FormatException, ArgumentOutOfRangeException, TypeInitializationException, InvalidOperationException- Throws:
java.lang.ThrowableArgumentNullExceptionFormatExceptionArgumentOutOfRangeExceptionTypeInitializationExceptionInvalidOperationException
-
CopyTo
public void CopyTo(Single[] array) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, IndexOutOfRangeException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionIndexOutOfRangeException
-
CopyTo
public void CopyTo(Single[] array, int index) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, FormatException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionFormatException
-
getOne
public static Vector3 getOne() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getUnitX
public static Vector3 getUnitX() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getUnitY
public static Vector3 getUnitY() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getUnitZ
public static Vector3 getUnitZ() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getZero
public static Vector3 getZero() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-