개발 기타

vscode 로 UML 사용하기

소나무꼴 2020. 6. 17. 00:32

 PlantUML (extensions 로 설치)

 

: 일반적인 시컨스다이어그램 사용가능

단축키 alt+d

@startuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
@enduml

 

 

Graphviz(dot) (extensions 로 설치)

 

단축키

  • Toggle Preview - ctrl+shift+v (Mac: cmd+shift+v)
  • Open Preview to the Side - ctrl+k v (Mac: cmd+k shift+v)
digraph G {
        fontname = "Bitstream Vera Sans"
        fontsize = 8

        node [
                fontname = "Bitstream Vera Sans"
                fontsize = 8
                shape = "record"
        ]

        edge [
                fontname = "Bitstream Vera Sans"
                fontsize = 8
        ]

        Animal [
                label = "{Animal|+ name : string\l+ age : int\l|+ die() : void\l}"
        ]
}

'개발 기타' 카테고리의 다른 글

UniTask 알아보기  (0) 2020.12.22
심볼링크 만들기  (0) 2020.08.19