18 个版本
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日 |
#380 在 科学 中
2,629 每月下载量
用于 2 个 Crates(通过 chemfiles)
3.5MB
19K 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 问题 报告。