bio_files 0.5.1

Save and load common biology file formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! [Orbital and Density Plots](https://www.faccts.de/docs/orca/6.1/manual/contents/utilitiesvisualization/plots.html)

use crate::orca::make_inp_block;

#[derive(Clone, Debug)]
pub struct Plots {}

impl Plots {
    pub fn make_inp(&self) -> String {
        let contents = vec![];

        make_inp_block("plots", &contents, &[])
    }
}