A three-dimensional box that uses Double elements.
コード例 #1
0
ファイル: Box1.cs プロジェクト: Burton-Radons/Alexandria
 /// <summary>Create a <see cref="Box3d"/> by providing the minimum extent and the size of each side.</summary>
 public static void Relative(  Double minX ,  Double minY ,  Double minZ ,   Double sizeX ,  Double sizeY ,  Double sizeZ  , out Box3d 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;
                                 return;
 }
コード例 #2
0
ファイル: Box1.cs プロジェクト: Burton-Radons/Alexandria
 /// <summary>Create a <see cref="Box3d"/> by providing the minimum extent and the size of each side.</summary>
 public static void Relative( ref Vector3d min ,  ref Vector3d size  , out Box3d 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;
                                 return;
 }