namespace molSys

Overview

Bare-bones structs used throughout the architecture. More…

namespace molSys {
 
// structs
 
template <CoordinateScalar T>
struct Point;
 
template <typename S, CoordinateScalar T>
struct PointCloud;
 
struct Result;
 
} // namespace molSys

Detailed Documentation

Bare-bones structs used throughout the architecture.

@detials This namespace defines Point and PointCloud structs, alongwith other basic functions and enums.

PointCloud is a struct that contains the information of a collection of Point structs, at every frame. Point contains the coordinates and types of each point, along with information about whether the particular particle is within a slice or not.

Changelog