/// <summary>
 /// Initializes a new instance of the <see cref="MapPlane"/> 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 MapPlane(MapVector3 p1, MapVector3 p2, MapVector3 p3)
 {
     P1 = p1;
     P2 = p2;
     P3 = p3;
 }
 /// <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(MapVector3 vector, float translation, float scale)
 {
     Vector      = vector;
     Translation = translation;
     Scale       = scale;
 }