SimpleGraph-Excel: Difference between revisions

From BITPlan Wiki
Jump to navigation Jump to search
No edit summary
Line 35: Line 35:
</uml>
</uml>
= Example =
= Example =
<uml>
hide circle
package Railway {
  class City {
    name
    lat
    lon
  }
  class Station {
    name
    lat
    lon
  }
  class Route {
    linenumber
  }
  class Section {
    id
  }
  Station "1" - "city 1" City
  Route "1" - "to 1" City
  Route "1" - "from 1" City
  Route "1" - "sections n" Section
  Station "1" - "sections n" Section
}
</uml>


= Links =
= Links =

Revision as of 16:50, 30 August 2018