memo/presentation

memo / presentation

dot (graphviz)

http://homepage3.nifty.com/kaku-chan/graphviz/

digraph "" {
   graph [fontname = "Osaka", rankdir = "TB", concentrate = true, compound = true];
   node [fontname = "Osaka", shape = box ]

   subgraph cluster_A {
      label = A;

      start -> object_list;

      subgraph cluster_object {
         label = object;

         object_list -> { object_detail object_add };

         object_detail -> { object_edit object_remove sub_object_list };

         subgraph cluster_sub_object {
            label = sub_object;

            sub_object_list -> { sub_object_detail sub_object_add };

            sub_object_detail -> { sub_object_edit sub_object_remove };
         }

      }

   }

   subgraph cluster_B {
      label = B;

      home -> { 1 2 3 }
   }
}

Attachments