| 133 | | /// Prints the last error message in the error stack to stderr. If |
| 134 | | /// there is no error on the error stack, only the message is printed. |
| 135 | | /// The function does not alter the error stack in any way. |
| 136 | | /// @param message Message to include in the stderr output |
| | 139 | /** Prints the last error message in the error stack to stderr. If |
| | 140 | * there is no error on the error stack, only the message is printed. |
| | 141 | * The function does not alter the error stack in any way. |
| | 142 | * @param message Message to include in the stderr output |
| | 143 | */ |
| 143 | | /// Creates a LASReaderH object that can be used to read LASHeaderH and |
| 144 | | /// LASPointH objects with. The LASReaderH must not be created with a |
| 145 | | /// filename that is opened for read or write by any other API functions. |
| 146 | | /// @return opaque pointer to a LASReaderH instance. |
| 147 | | /// @param filename Filename to open for read |
| | 150 | /** Creates a LASReaderH object that can be used to read LASHeaderH and |
| | 151 | * LASPointH objects with. The LASReaderH must not be created with a |
| | 152 | * filename that is opened for read or write by any other API functions. |
| | 153 | * @return opaque pointer to a LASReaderH instance. |
| | 154 | * @param filename Filename to open for read |
| | 155 | */ |
| 150 | | /// Reads the next available point on the LASReaderH instance. If no point |
| 151 | | /// is available to read, NULL is returned. If an error happens during |
| 152 | | /// the reading of the next available point, an error will be added to the |
| 153 | | /// error stack and can be returned with the LASError_GetLastError* methods. |
| 154 | | /// @param hReader the opaque handle to the LASReaderH |
| 155 | | /// @return an opaque handle to a LASPointH object, or NULL if no point is |
| 156 | | /// available to read or an error occured. Use the |
| 157 | | /// LASError_GetLastError* methods to confirm the existence of an error |
| 158 | | /// if NULL is returned. |
| | 158 | /** Reads the next available point on the LASReaderH instance. If no point |
| | 159 | * is available to read, NULL is returned. If an error happens during |
| | 160 | * the reading of the next available point, an error will be added to the |
| | 161 | * error stack and can be returned with the LASError_GetLastError* methods. |
| | 162 | * @param hReader the opaque handle to the LASReaderH |
| | 163 | * @return an opaque handle to a LASPointH object, or NULL if no point is |
| | 164 | * available to read or an error occured. Use the |
| | 165 | * LASError_GetLastError* methods to confirm the existence of an error |
| | 166 | * if NULL is returned. |
| | 167 | */ |
| 161 | | /// Reads a LASPointH from the given position in the LAS file represented |
| 162 | | /// by the LASReaderH instance. If no point is available at that location, |
| 163 | | /// NULL is returned. If an error happens during the reading of the point, |
| 164 | | /// an error will be added to the error stack and can be returned with the |
| 165 | | /// LASError_GetLastError* methods. |
| 166 | | /// @param hReader the opaque handle to the LASReaderH |
| 167 | | /// @param position the integer position of the point in the file to read. |
| 168 | | /// @return an opaque handle to a LASPointH object, or NULL if no point is |
| 169 | | /// available at the given location or an error occured. Use the |
| 170 | | /// LASError_GetLastError* methods to confirm the existence of an error |
| 171 | | /// if NULL is returned. |
| | 170 | /** Reads a LASPointH from the given position in the LAS file represented |
| | 171 | * by the LASReaderH instance. If no point is available at that location, |
| | 172 | * NULL is returned. If an error happens during the reading of the point, |
| | 173 | * an error will be added to the error stack and can be returned with the |
| | 174 | * LASError_GetLastError* methods. |
| | 175 | * @param hReader the opaque handle to the LASReaderH |
| | 176 | * @param position the integer position of the point in the file to read. |
| | 177 | * @return an opaque handle to a LASPointH object, or NULL if no point is |
| | 178 | * available at the given location or an error occured. Use the |
| | 179 | * LASError_GetLastError* methods to confirm the existence of an error |
| | 180 | * if NULL is returned. |
| | 181 | */ |