grafen 0.9.1

Create graphene and other substrates for use in molecular dynamics simulations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Spherical objects.

use coord::Coord;

#[allow(dead_code)]
/// A spherical volume.
pub struct Sphere {
    pub origin: Coord,
    pub radius: f64,
    pub coords: Vec<Coord>,
}