FMatrix4
Inheritance: java.lang.Object
All Implemented Interfaces: com.aspose.threed.Struct, java.io.Serializable
public final class FMatrix4 implements Struct<FMatrix4>, Serializable
Matrice 4x4 avec tous les composants de type flottant
Constructeurs
| Constructeur | Description |
|---|---|
| FMatrix4(float m00, float m01, float m02, float m03, float m10, float m11, float m12, float m13, float m20, float m21, float m22, float m23, float m30, float m31, float m32, float m33) | Initialise l’instance de FMatrix4 |
| FMatrix4(Matrix4 mat) | Initialisez l’instance de FMatrix4 à partir d’une instance de Matrix4. |
| FMatrix4(FVector4 r0, FVector4 r1, FVector4 r2, FVector4 r3) | Construit la matrice à partir de 4 lignes. |
| FMatrix4() |
Champs
| Champ | Description |
|---|---|
| m00 | Le m00. |
| m01 | Le m01. |
| m02 | Le m02. |
| m03 | Le m03. |
| m10 | Le m10. |
| m11 | Le m11. |
| m12 | Le m12. |
| m13 | Le m13. |
| m20 | Le m20. |
| m21 | Le m21. |
| m22 | Le m22. |
| m23 | Le m23. |
| m30 | Le m30. |
| m31 | Le m31. |
| m32 | Le m32. |
| m33 | Le m33. |
Méthodes
| Méthode | Description |
|---|---|
| clone() | |
| concatenate(FMatrix4 m2) | Concatène les deux matrices |
| concatenate(Matrix4 m2) | Concatène les deux matrices |
| copyFrom(FMatrix4 src) | |
| equals(Object obj) | |
| getClass() | |
| getIdentity() | La matrice identité |
| hashCode() | |
| inverse() | Calcule la matrice inverse de l’instance actuelle. |
| mul(FMatrix4 left, FMatrix4 right) | Concaténer les deux matrices |
| mul(FMatrix4 lhs, float v) | Multiplie la matrice par une valeur double |
| notify() | |
| notifyAll() | |
| toString() | |
| transpose() | Transpose cette instance. |
| wait() | |
| wait(long arg0) | |
| wait(long arg0, int arg1) |
FMatrix4(float m00, float m01, float m02, float m03, float m10, float m11, float m12, float m13, float m20, float m21, float m22, float m23, float m30, float m31, float m32, float m33)
public FMatrix4(float m00, float m01, float m02, float m03, float m10, float m11, float m12, float m13, float m20, float m21, float m22, float m23, float m30, float m31, float m32, float m33)
Initialise l’instance de FMatrix4
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| m00 | float | Le m[0, 0] |
| m01 | float | Le m[0, 1] |
| m02 | float | Le m[0, 2] |
| m03 | float | Le m[0, 3] |
| m10 | float | Le m[1, 0] |
| m11 | float | Le m[1, 1] |
| m12 | float | Le m[1, 2] |
| m13 | float | Le m[1, 3] |
| m20 | float | Le m[2, 0] |
| m21 | float | Le m[2, 1] |
| m22 | float | Le m[2, 2] |
| m23 | float | Le m[2, 3] |
| m30 | float | Le m[3, 0] |
| m31 | float | Le m[3, 1] |
| m32 | float | Le m[3, 2] |
| m33 | float | Le m[3, 3] |
FMatrix4(Matrix4 mat)
public FMatrix4(Matrix4 mat)
Initialisez l’instance de FMatrix4 à partir d’une instance de Matrix4.
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| mat | Matrix4 | L’instance Matrix4. |
FMatrix4(FVector4 r0, FVector4 r1, FVector4 r2, FVector4 r3)
public FMatrix4(FVector4 r0, FVector4 r1, FVector4 r2, FVector4 r3)
Construit la matrice à partir de 4 lignes.
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| r0 | FVector4 | R0. |
| r1 | FVector4 | R1. |
| r2 | FVector4 | R2. |
| r3 | FVector4 | R3. |
FMatrix4()
public FMatrix4()
m00
public float m00
Le m00.
m01
public float m01
Le m01.
m02
public float m02
Le m02.
m03
public float m03
Le m03.
m10
public float m10
Le m10.
m11
public float m11
Le m11.
m12
public float m12
Le m12.
m13
public float m13
Le m13.
m20
public float m20
Le m20.
m21
public float m21
Le m21.
m22
public float m22
Le m22.
m23
public float m23
Le m23.
m30
public float m30
Le m30.
m31
public float m31
Le m31.
m32
public float m32
Le m32.
m33
public float m33
Le m33.
clone()
public FMatrix4 clone()
Cloner l’instance actuelle
Returns: FMatrix4
concatenate(FMatrix4 m2)
public FMatrix4 concatenate(FMatrix4 m2)
Concatène les deux matrices
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| m2 | FMatrix4 | M2. |
Returns: FMatrix4 - New matrix4
concatenate(Matrix4 m2)
public FMatrix4 concatenate(Matrix4 m2)
Concatène les deux matrices
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| m2 | Matrix4 | M2. |
Returns: FMatrix4 - New matrix4
copyFrom(FMatrix4 src)
public void copyFrom(FMatrix4 src)
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| src | FMatrix4 |
equals(Object obj)
public boolean equals(Object obj)
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| obj | java.lang.Object |
Returns: boolean
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getIdentity()
public static FMatrix4 getIdentity()
La matrice identité
Returns: FMatrix4 - The identity matrix
hashCode()
public int hashCode()
Returns: int
inverse()
public FMatrix4 inverse()
Calcule la matrice inverse de l’instance actuelle.
Returns: FMatrix4 - Inverse matrix4
mul(FMatrix4 left, FMatrix4 right)
public static FMatrix4 mul(FMatrix4 left, FMatrix4 right)
Concaténer les deux matrices
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| left | FMatrix4 | La matrice gauche à concaténer |
| right | FMatrix4 | La matrice droite à concaténer |
Returns: FMatrix4 - The concatenated matrix.
mul(FMatrix4 lhs, float v)
public static FMatrix4 mul(FMatrix4 lhs, float v)
Multiplie la matrice par une valeur double
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| lhs | FMatrix4 | Lhs. |
| v | float | V. |
Returns: FMatrix4 - Result matrix
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
toString()
public String toString()
Returns: java.lang.String
transpose()
public FMatrix4 transpose()
Transpose cette instance.
Returns: FMatrix4 - The transposed matrix.
wait()
public final void wait()
wait(long arg0)
public final void wait(long arg0)
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
| Paramètre | Type | Description |
|---|---|---|
| arg0 | long | |
| arg1 | int |