Exemplo n.º 1
0
 // Homogeneous transform.
 public FVector4 TransformFVector4(FVector4 V)
 {
     return(TransformFVector4(ref this, ref V));
 }
Exemplo n.º 2
0
 public FVector4     TransformFVector4NoScale(FVector4 V)
 {
     return(TransformFVector4NoScale(ref this, ref V));
 }
Exemplo n.º 3
0
 //[MethodImplAttribute(MethodImplOptions.InternalCall)]
 extern static FVector4 TransformFVector4(ref FMatrix This, ref FVector4 V);
Exemplo n.º 4
0
 public FVector4 TransformFVector4NoScale(FVector4 v)
 => E_FTransform_TransformFVector4NoScale(this, v);
Exemplo n.º 5
0
 extern static FVector4 TransformFVector4NoScale(ref FTransform This, ref FVector4 V);
Exemplo n.º 6
0
 /// <summary>
 /// Constructor using the XYZ components from a 4D vector.
 /// </summary>
 /// <param name="v">4D Vector to copy from.</param>
 public FVector(FVector4 v) :
     base(E_CreateStruct_FVector_FVector4(v), false)
 {
 }
Exemplo n.º 7
0
 public FVector4 TransformFVector4(FVector4 v)
 => E_FTransform_TransformFVector4(this, v);
Exemplo n.º 8
0
 /// <summary>
 /// <para>Constructor. </para>
 /// <param name="V">4D vector to set up plane. </param>
 /// </summary>
 public FPlane(FVector4 v) :
     base(E_CreateStruct_FPlane_FVector4(v), false)
 {
 }
Exemplo n.º 9
0
 static extern FVector4 TransformFVector4(ref FTransform This, ref FVector4 V);
Exemplo n.º 10
0
 public FVector4 TransformFVector4NoScale(FVector4 V)
 => E_FTransform_TransformFVector4NoScale(this, V);
Exemplo n.º 11
0
 public FVector4 TransformFVector4(FVector4 V)
 => E_FTransform_TransformFVector4(this, V);
Exemplo n.º 12
0
 /**
  * Constructor using the XYZ components from a 4D vector.
  *
  * @param V 4D Vector to copy from.
  */
 public FVector(FVector4 V)
 {
     X = V.X;
     Y = V.Y;
     Z = V.Z;
 }