Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="VmfPlane"/> class.
 /// </summary>
 /// <param name="p1">The first point of the plane definition.</param>
 /// <param name="p2">The second point of the plane definition.</param>
 /// <param name="p3">The third point of the plane definition.</param>
 public VmfPlane(VmfVector3 p1, VmfVector3 p2, VmfVector3 p3)
 {
     P1 = p1;
     P2 = p2;
     P3 = p3;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="VmfAxis"/> class.
 /// </summary>
 /// <param name="vector">The vector.</param>
 /// <param name="translation">The translation.</param>
 /// <param name="scale">The scale.</param>
 public VmfAxis(VmfVector3 vector, float translation, float scale)
 {
     Vector      = vector;
     Translation = translation;
     Scale       = scale;
 }