public class Vector3 extends ValueType
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Numerics.Vector3
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
static java.lang.String |
assemblyShortName
Assembly name: System.Numerics
|
static java.lang.String |
className
Qualified class name: System.Numerics.Vector3
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
Vector3() |
Vector3(java.lang.Object instance)
Internal constructor.
|
Vector3(Single value) |
Vector3(Single x,
Single y,
Single z) |
Vector3(Vector2 value,
Single z) |
| Modifier and Type | Method and Description |
|---|---|
static Vector3 |
Abs(Vector3 value) |
static Vector3 |
Add(Vector3 left,
Vector3 right) |
static Vector3 |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into Vector3, a cast assert is made to check if types are compatible. |
static Vector3 |
Clamp(Vector3 value1,
Vector3 min,
Vector3 max) |
void |
CopyTo(Single[] array) |
void |
CopyTo(Single[] array,
int index) |
static Vector3 |
Cross(Vector3 vector1,
Vector3 vector2) |
static Single |
Distance(Vector3 value1,
Vector3 value2) |
static Single |
DistanceSquared(Vector3 value1,
Vector3 value2) |
static Vector3 |
Divide(Vector3 left,
Single divisor) |
static Vector3 |
Divide(Vector3 left,
Vector3 right) |
static Single |
Dot(Vector3 vector1,
Vector3 vector2) |
boolean |
Equals(Vector3 other) |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
static Vector3 |
getOne() |
static Vector3 |
getUnitX() |
static Vector3 |
getUnitY() |
static Vector3 |
getUnitZ() |
static Vector3 |
getZero() |
Single |
Length() |
Single |
LengthSquared() |
static Vector3 |
Lerp(Vector3 value1,
Vector3 value2,
Single amount) |
static Vector3 |
Max(Vector3 value1,
Vector3 value2) |
static Vector3 |
Min(Vector3 value1,
Vector3 value2) |
static Vector3 |
Multiply(Single left,
Vector3 right) |
static Vector3 |
Multiply(Vector3 left,
Single right) |
static Vector3 |
Multiply(Vector3 left,
Vector3 right) |
static Vector3 |
Negate(Vector3 value) |
static Vector3 |
Normalize(Vector3 value) |
static Vector3 |
Reflect(Vector3 vector,
Vector3 normal) |
void |
setJCOInstance(JCObject instance) |
static Vector3 |
SquareRoot(Vector3 value) |
static Vector3 |
Subtract(Vector3 left,
Vector3 right) |
java.lang.String |
ToString(java.lang.String format) |
java.lang.String |
ToString(java.lang.String format,
IFormatProvider formatProvider) |
static Vector3 |
Transform(Vector3 position,
Matrix4x4 matrix) |
static Vector3 |
Transform(Vector3 value,
Quaternion rotation) |
static Vector3 |
TransformNormal(Vector3 normal,
Matrix4x4 matrix) |
public static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public Vector3()
throws java.lang.Throwable
java.lang.Throwablepublic Vector3(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic Vector3(Single value) throws java.lang.Throwable
java.lang.Throwablepublic Vector3(Single x, Single y, Single z) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Add(Vector3 left, Vector3 right) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into Vector3, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedVector3 instancejava.lang.Throwable - in case of error during cast operationpublic static Vector3 Clamp(Vector3 value1, Vector3 min, Vector3 max) throws java.lang.Throwable
java.lang.Throwablepublic void CopyTo(Single[] array) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, IndexOutOfRangeException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionIndexOutOfRangeExceptionpublic void CopyTo(Single[] array, int index) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, FormatException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionFormatExceptionpublic static Vector3 Cross(Vector3 vector1, Vector3 vector2) throws java.lang.Throwable
java.lang.Throwablepublic static Single Distance(Vector3 value1, Vector3 value2) throws java.lang.Throwable
java.lang.Throwablepublic static Single DistanceSquared(Vector3 value1, Vector3 value2) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Divide(Vector3 left, Single divisor) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Divide(Vector3 left, Vector3 right) throws java.lang.Throwable
java.lang.Throwablepublic static Single Dot(Vector3 vector1, Vector3 vector2) throws java.lang.Throwable
java.lang.Throwablepublic boolean Equals(Vector3 other) throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in class ValueTypeString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in class ValueTypeString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in class ValueTypeObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in class ValueTypeString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in class ValueTypeJCType representing the CLR Type of the instantiated Classpublic static Vector3 getOne() throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 getUnitX() throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 getUnitY() throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 getUnitZ() throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 getZero() throws java.lang.Throwable
java.lang.Throwablepublic Single Length() throws java.lang.Throwable
java.lang.Throwablepublic Single LengthSquared() throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Lerp(Vector3 value1, Vector3 value2, Single amount) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Max(Vector3 value1, Vector3 value2) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Min(Vector3 value1, Vector3 value2) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Multiply(Single left, Vector3 right) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Multiply(Vector3 left, Single right) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Multiply(Vector3 left, Vector3 right) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Negate(Vector3 value) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Normalize(Vector3 value) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Reflect(Vector3 vector, Vector3 normal) throws java.lang.Throwable
java.lang.Throwablepublic void setJCOInstance(JCObject instance)
setJCOInstance in class ValueTypepublic static Vector3 SquareRoot(Vector3 value) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Subtract(Vector3 left, Vector3 right) throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String ToString(java.lang.String format)
throws java.lang.Throwable,
ArgumentNullException,
TypeLoadException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
ArgumentOutOfRangeException,
OutOfMemoryException
public java.lang.String ToString(java.lang.String format,
IFormatProvider formatProvider)
throws java.lang.Throwable,
ArgumentNullException,
FormatException,
ArgumentOutOfRangeException,
TypeInitializationException,
InvalidOperationException
java.lang.ThrowableArgumentNullExceptionFormatExceptionArgumentOutOfRangeExceptionTypeInitializationExceptionInvalidOperationExceptionpublic static Vector3 Transform(Vector3 position, Matrix4x4 matrix) throws java.lang.Throwable
java.lang.Throwablepublic static Vector3 Transform(Vector3 value, Quaternion rotation) throws java.lang.Throwable
java.lang.Throwable