mirror of
https://github.com/JHUAPL/pubgeo.git
synced 2026-01-09 14:38:06 -05:00
14 lines
370 B
C++
14 lines
370 B
C++
// Copyright 2017 The Johns Hopkins University Applied Physics Laboratory.
|
|
// Licensed under the MIT License. See LICENSE.txt in the project root for full license information.
|
|
|
|
#include <PointCloud.h>
|
|
|
|
using namespace pubgeo;
|
|
|
|
int main() {
|
|
if (!PointCloud::TransformPointCloud("someFile.las", "someOut.las", 3.0, 4.0, 5.0)) {
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
} |