Skip to content

ogheorghies/MetaUML

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
src
 
 
 
 
 
 
 
 

MetaUML is a MetaPost library for creating UML diagrams, using a textual notation.

# Filename: example.mp
input metauml;
beginfig(1);
    Class.A("Point")("+x: int", "+y: int")();
    drawObject(A);
endfig;
end
mptopdf example.mp

For more information, see the wiki and the manual.

Unreleased features are documented in the manual, built locally as shown below.

Development

Make sure that make and docker are installed, and that docker ps works.

git clone git@github.com:ogheorghies/MetaUML.git
cd MetaUML
make