package ocamlgraph

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type graph = [
  1. | `Center of bool
  2. | `Fontcolor of color
  3. | `Fontname of string
  4. | `Fontsize of int
  5. | `HtmlLabel of string
  6. | `Label of string
  7. | `Margin of float * float
  8. | `OrderingOut
  9. | `Orientation of [ `Landscape | `Portrait ]
  10. | `Overlap of bool
  11. | `Page of float * float
  12. | `Pagedir of [ `LeftToRight | `TopToBottom ]
  13. | `Sep of float
  14. | `Size of float * float
  15. | `Spline of bool
  16. | `Start of int
]
type vertex = [
  1. | `Color of color
  2. | `ColorWithTransparency of color_with_transparency
  3. | `Fontcolor of color
  4. | `Fontname of string
  5. | `Fontsize of int
  6. | `Height of float
  7. | `HtmlLabel of string
  8. | `Label of string
  9. | `Orientation of float
  10. | `Penwidth of float
  11. | `Peripheries of int
  12. | `Pos of float * float
  13. | `Regular of bool
  14. | `Shape of [ `Assembly | `Box | `Box3d | `Cds | `Circle | `Component | `Diamond | `Doublecircle | `Doubleoctagon | `Egg | `Ellipse | `Fivepoverhang | `Folder | `House | `Insulator | `Invhouse | `Invtrapezium | `Invtriangle | `Larrow | `Lpromoter | `Mcircle | `Mdiamond | `Msquare | `Note | `Noverhang | `Oval | `Parallelogram | `Plaintext | `Polygon of int * float | `Primersite | `Promoter | `Proteasesite | `Proteinstab | `Rarrow | `Record | `Restrictionsite | `Ribosite | `Rnastab | `Rpromoter | `Signature | `Star | `Tab | `Terminator | `Threepoverhang | `Trapezium | `Triangle | `Tripleoctagon | `Underline | `Utr ]
  15. | `Style of [ `Bold | `Dashed | `Dotted | `Filled | `Invis | `Rounded | `Solid ]
  16. | `Width of float
]
type edge = [
  1. | `Color of color
  2. | `ColorWithTransparency of color_with_transparency
  3. | `Decorate of bool
  4. | `Dir of [ `Back | `Both | `Forward | `None ]
  5. | `Fontcolor of color
  6. | `Fontname of string
  7. | `Fontsize of int
  8. | `HtmlLabel of string
  9. | `Id of string
  10. | `Label of string
  11. | `Labelfontcolor of color
  12. | `Labelfontname of string
  13. | `Labelfontsize of int
  14. | `Len of float
  15. | `Penwidth of float
  16. | `Style of [ `Bold | `Dashed | `Dotted | `Invis | `Solid ]
  17. | `Weight of float
]
type subgraph = {
  1. sg_name : string;
  2. sg_attributes : vertex list;
  3. sg_parent : string option;
}
OCaml

Innovation. Community. Security.