A four-dimensional box that uses Length elements.
Beispiel #1
0
 /// <summary>Create a <see cref="Box4"/> by providing the minimum extent and the size of each side.</summary>
 public static void Relative(  Length minX ,  Length minY ,  Length minZ ,  Length minW ,   Length sizeX ,  Length sizeY ,  Length sizeZ ,  Length sizeW  , out Box4 result)
 {
     result.Min.X = minX;
                 result.Max.X = minX + sizeX;
                                     result.Min.Y = minY;
                 result.Max.Y = minY + sizeY;
                                     result.Min.Z = minZ;
                 result.Max.Z = minZ + sizeZ;
                                     result.Min.W = minW;
                 result.Max.W = minW + sizeW;
                                 return;
 }
Beispiel #2
0
 /// <summary>Create a <see cref="Box4"/> by providing the minimum extent and the size of each side.</summary>
 public static void Relative( ref Vector4 min ,  ref Vector4 size  , out Box4 result)
 {
     result.Min.X = min.X;
                 result.Max.X = min.X + size.X;
                                     result.Min.Y = min.Y;
                 result.Max.Y = min.Y + size.Y;
                                     result.Min.Z = min.Z;
                 result.Max.Z = min.Z + size.Z;
                                     result.Min.W = min.W;
                 result.Max.W = min.W + size.W;
                                 return;
 }