/// <summary>
 /// Initializes a new instance of the <see cref="DepthTable"/> class with an existing <see cref="Json.DepthLut"/> storage.
 /// </summary>
 /// <param name="depthLut">A <see cref="Json.DepthLut"/> to use as a storage for the lookup table.</param>
 public DepthTable(Json.DepthLut depthLut)
 {
     JsonDepthLut = depthLut;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="DepthTable"/> class.
 /// </summary>
 public DepthTable()
 {
     JsonDepthLut = new Json.DepthLut();
 }