4个版本

0.2.2 2023年5月2日
0.2.1 2021年11月8日
0.2.0 2021年9月7日
0.1.0 2021年9月7日

294科学

Download history • Rust 包仓库 4/week @ 2024-05-27 • Rust 包仓库 27/week @ 2024-06-03 • Rust 包仓库 19/week @ 2024-06-10 • Rust 包仓库 2/week @ 2024-06-17 • Rust 包仓库 40/week @ 2024-06-24 • Rust 包仓库 5/week @ 2024-07-08 • Rust 包仓库 22/week @ 2024-07-15 • Rust 包仓库 66/week @ 2024-07-22 • Rust 包仓库

每月98次下载

MIT许可

600KB
15K SLoC

C++ 15K SLoC // 0.0% comments • Rust 包仓库 Rust 261 SLoC // 0.1% comments • Rust 包仓库 Python 52 SLoC // 0.7% comments • Rust 包仓库 C 20 SLoC // 0.1% comments • Rust 包仓库

coordgen-rs

coordgen的轻量级封装。

此crate提供了两个函数,用于与libcoordgen接口,根据分子的连接性生成2D坐标。此crate的目的是简单地生成坐标,它本身不执行任何绘图功能。

需要CMake版本3.2或更高版本,一个Boost安装,一个支持c++的编译器,支持c++11。这些要求是从原始项目继承而来的。此项目在Windows上无法编译。

此crate未获得coordgen原始作者的认可或支持。

分子图

分子图可以以几种不同的方式表示。此crate采用一种有见地的定义,其中分子图是无向简单图,原子序数作为节点标签,键多重性作为边标签。

实现

此实现定义了一个简单的包装函数,具有类似于C的接口,实际上是coordgen存储库中的示例的修改版本。此包装器不允许进行任何配置。

版本管理

crate版本 coordgen版本
^0.1.0 2.0.3

示例

// this corresponds to an equivalent to the example in
// https://github.com/schrodinger/coordgenlibs/blob/master/example_dir/example.cpp

// the molecule has a carbon (idx 0) and a nitrogen (idx 1)
let atoms = vec![6u8, 7];
// it has one single bond connecting the two atoms with 
let bonds = vec![[0u16, 1, 1]];

let coords = coordgen::gen_coords(&atoms, &bonds).unwrap();
assert_eq!(coords, vec![(-50.0, 0.0), (0.0, 0.0)])

无运行时依赖