Crate riscan_pro [] [src]

Inspect and do work with RiSCAN Pro projects.

RiSCAN PRO is Terrestrial Laser Scanning (TLS) software made by Riegl. This crate provides a library and an executable for inspecting and doing work with RiSCAN Pro projects.

Riegl did not make this software, and cannot provide any support for it. Please do not contact Riegl with questions about this software.

Examples

Projects can be opened by providing the project's directory to Project::from_path:

let project = Project::from_path("data/project.RiSCAN").unwrap();

or the project.rsp file:

let project = Project::from_path("data/project.RiSCAN/project.rsp").unwrap();

Structs

Project

A RiSCAN Pro project.

ScanPosition

A scan position.

Enums

Error

Our custom error enum.

Type Definitions

Matrix

Type alias for a 4x4 f64 matrix.

Result

Our custom result type.

Vector

Type alias for a 4-element f64 vector.