# partio
**Repository Path**: heray/partio
## Basic Information
- **Project Name**: partio
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: BSD-3-Clause
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2022-01-20
- **Last Updated**: 2024-10-26
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[Partio](https://wdas.github.io/partio) - A library for particle IO and manipulation
=============================================================================================================
This is the initial source code release of partio a tool we used for particle
reading/writing. It started out as an abstraction for the commonalities in
particle models (i.e. accessing many attributes associated with an index or
entity).
Super impatient building guide
==============================
# Install Location ~ adjust accordingly
prefix=$HOME/local
git clone https://github.com/wdas/partio.git
cd partio
make -j prefix=$prefix install
Getting Started
===============
CMake is used to build the project, but we provide a top-level Makefile
for convenience that takes care of all the steps.
See the Makefile for the user-tweakable variables and corresponding
cmake options.
The typical usage for an installation into `/usr/local`
with a temporary staging directory of `/tmp/stage` is:
make DESTDIR=/tmp/stage prefix=/usr/local install
Source code overview
====================
src/
lib/ Library code (public API in root)
lib/core Core library (KDtree traversal, data representations)
lib/io Input/Output (Different file formats)
py/ SWIG based python bindings
doc/ Doxygen documentation and (the start of) a manual
tests/ Start of regression tests (I need more)
tools/ Useful tools
partconvert