Cubes

domainstorytelling/Object/Cubes
include('domainstorytelling/Object/Cubes')
Illustration Cubes CubesCard CubesGroup
illustration for Illustration illustration for Cubes illustration for CubesCard illustration for CubesGroup

Sprites

The item provides the following sriptes:

  • <$CubesXs>
  • <$CubesSm>
  • <$CubesMd>
  • <$CubesLg>

Cubes

Load remotely

@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('domainstorytelling/bootstrap')

' loads the Item which embeds the element Cubes
include('domainstorytelling/Object/Cubes')

' renders the element
Cubes('Cubes', 'Cubes', 'an optional tech label', 'an optional description')
@enduml

Load locally

@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('domainstorytelling/bootstrap')

' loads the Item which embeds the element Cubes
include('domainstorytelling/Object/Cubes')

' renders the element
Cubes('Cubes', 'Cubes', 'an optional tech label', 'an optional description')
@enduml

CubesCard

Load remotely

@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('domainstorytelling/bootstrap')

' loads the Item which embeds the element CubesCard
include('domainstorytelling/Object/Cubes')

' renders the element
CubesCard('CubesCard', 'Cubes Card', 'an optional description')
@enduml

Load locally

@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('domainstorytelling/bootstrap')

' loads the Item which embeds the element CubesCard
include('domainstorytelling/Object/Cubes')

' renders the element
CubesCard('CubesCard', 'Cubes Card', 'an optional description')
@enduml

CubesGroup

Load remotely

@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('domainstorytelling/bootstrap')

' loads the Item which embeds the element CubesGroup
include('domainstorytelling/Object/Cubes')

' renders the element
CubesGroup('CubesGroup', 'Cubes Group', 'an optional tech label') {
    note as note
        the content of the group
    end note
}
@enduml

Load locally

@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('domainstorytelling/bootstrap')

' loads the Item which embeds the element CubesGroup
include('domainstorytelling/Object/Cubes')

' renders the element
CubesGroup('CubesGroup', 'Cubes Group', 'an optional tech label') {
    note as note
        the content of the group
    end note
}
@enduml