All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mreutegg.laszip4j.lastools.OffsetSize Maven / Gradle / Ivy

There is a newer version: 0.19
Show newest version
/*
 * Copyright 2007-2015, martin isenburg, rapidlasso - fast tools to catch reality
 *
 * This is free software; you can redistribute and/or modify it under the
 * terms of the GNU Lesser General Licence as published by the Free Software
 * Foundation. See the LICENSE.txt file for more information.
 *
 * This software is distributed WITHOUT ANY WARRANTY and without even the
 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 */
package com.github.mreutegg.laszip4j.lastools;

class OffsetSize {

    final long offset; // unsigned
    final int size; // unsigned

    OffsetSize(long offset, int size) {
        this.offset = offset;
        this.size = size;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy