10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-29 16:34:43 +02:00
QCaml/particles/lib/zmatrix.mli

24 lines
531 B
OCaml
Raw Normal View History

2020-12-29 02:29:43 +01:00
(* Type
*
* #+NAME: types *)
2020-12-29 02:38:12 +01:00
(* [[file:~/QCaml/particles/zmatrix.org::types][types]] *)
2020-12-29 02:29:43 +01:00
type t
(* types ends here *)
(* Conversion *)
2020-12-29 02:38:12 +01:00
(* [[file:~/QCaml/particles/zmatrix.org::*Conversion][Conversion:1]] *)
2020-12-29 02:29:43 +01:00
val of_string : string -> t
val to_xyz : t -> (Element.t * float * float * float) array
val to_xyz_string : t -> string
(* Conversion:1 ends here *)
(* Printers *)
2020-12-29 02:38:12 +01:00
(* [[file:~/QCaml/particles/zmatrix.org::*Printers][Printers:1]] *)
2020-12-29 02:29:43 +01:00
val pp : Format.formatter -> t -> unit
(* Printers:1 ends here *)