rotamer 0.2.0

A Rust library for NERF-based sidechain coordinate placement for 29 amino acid types; build.rs bakes all bond geometry as f32 literals, custom libm-free sincosf/rsqrtf, #[repr(C)] stack-only output, zero heap, no-std.
Documentation
1
2
3
4
5
6
7
8
9
#[path = "build/codegen.rs"]
mod codegen;
#[path = "build/residues/mod.rs"]
mod residues;

fn main() {
    println!("cargo:rerun-if-changed=build/");
    codegen::generate();
}