21 个版本
0.10.41 | 2024年2月15日 |
---|---|
0.10.40 | 2023年8月29日 |
0.10.4 | 2023年5月17日 |
0.10.3 | 2022年8月27日 |
0.4.0 | 2015年10月30日 |
#28 在 科学
2,618 每月下载量
用于 molly
4MB
22K SLoC
chemfiles.rs
Rust 对 chemfiles 库的绑定。
文档
使用方法
将以下内容添加到您的 Cargo.toml
文件中
[dependencies]
chemfiles = "0.10"
以下是一个简单的使用示例。更多信息请参阅 examples
文件夹。
use chemfiles::{Trajectory, Frame};
fn main() {
let mut trajectory = Trajectory::open("filename.xyz", 'r').unwrap();
let mut frame = Frame::new();
trajectory.read(&mut frame).unwrap();
println!("There are {} atoms in the frame", frame.size());
let positions = frame.positions();
// Do awesome things with the positions here !
}
错误报告,功能请求
请通过 Github 问题 报告您发现的任何错误和您可能希望的功能。