Example #1
0
        public override FileHandlerBase Create(string path)
        {
            FileHandlerBase inputHandler = new LAZFile(path);

            return(inputHandler);
        }
Example #2
0
 public LAZBinarySource(FileHandlerBase file, long count, Extent3D extent, SQuantization3D quantization, long dataOffset, short pointSizeBytes)
     : base(file, count, extent, quantization, dataOffset, pointSizeBytes)
 {
     m_handler = (LAZFile)file;
 }
Example #3
0
 public LAZBinarySource(FileHandlerBase file, long count, Extent3D extent, SQuantization3D quantization, long dataOffset, short pointSizeBytes)
     : base(file, count, extent, quantization, dataOffset, pointSizeBytes)
 {
     m_handler = (LAZFile)file;
 }
Example #4
0
 public override FileHandlerBase Create(string path)
 {
     FileHandlerBase inputHandler = new LAZFile(path);
     return inputHandler;
 }