76 lines
1.6 KiB
Plaintext
76 lines
1.6 KiB
Plaintext
@startuml
|
|
'https://plantuml.com/object-diagram
|
|
|
|
object Mech <<Mech>> {
|
|
heater: x
|
|
}
|
|
|
|
object Head <<Area>> {
|
|
item_lines: 6
|
|
}
|
|
object Sustainment <<AreaItem>>
|
|
object Sensors <<AreaItem>>
|
|
object Cockpit <<Cockpit>> <<AreaItem>>
|
|
|
|
object InnerStructure <<InnerStructure>>
|
|
object Gyroskope <<Gyroskope>> <<AreaItem>>
|
|
object Reaktor <<Reaktor>> <<AreaItem>>
|
|
object TorsoMiddle <<Area>> {
|
|
item_lines: 12
|
|
}
|
|
object TorsoLeft <<Area>> {
|
|
item_lines: 12
|
|
}
|
|
object ArmLeft <<Area>> {
|
|
item_lines: 12
|
|
}
|
|
object LegLeft <<Area>> {
|
|
item_lines: 6
|
|
}
|
|
object TorsoRight <<Area>> {
|
|
item_lines: 12
|
|
}
|
|
object ArmRight <<Area>> {
|
|
item_lines: 12
|
|
}
|
|
object LegRight <<Area>> {
|
|
item_lines: 6
|
|
}
|
|
object JointAL as "Joint" <<AreaItem>>
|
|
object ActivatorAL as "Activator" <<AreaItem>>
|
|
object JointLL as "Joint" <<AreaItem>>
|
|
object ActivatorLL as "Activator" <<AreaItem>>
|
|
object JointAR as "Joint" <<AreaItem>>
|
|
object ActivatorAR as "Activator" <<AreaItem>>
|
|
object JointLR as "Joint" <<AreaItem>>
|
|
object ActivatorLR as "Activator" <<AreaItem>>
|
|
|
|
|
|
Mech *- Gyroskope
|
|
Head *- Cockpit
|
|
Head *-- Sustainment
|
|
Head *-- Sensors
|
|
|
|
Mech *-- InnerStructure
|
|
InnerStructure *-- Head
|
|
InnerStructure *-- TorsoMiddle
|
|
Mech *- Reaktor
|
|
Gyroskope .. TorsoMiddle
|
|
Reaktor .. TorsoMiddle
|
|
TorsoMiddle *-- TorsoLeft
|
|
TorsoMiddle *-- TorsoRight
|
|
TorsoLeft *-- ArmLeft
|
|
TorsoLeft *-- LegLeft
|
|
TorsoRight *-- ArmRight
|
|
TorsoRight *-- LegRight
|
|
ArmLeft *-- JointAL
|
|
ArmLeft *-- ActivatorAL
|
|
ArmRight *-- JointAR
|
|
ArmRight *-- ActivatorAR
|
|
LegRight *-- JointLR
|
|
LegRight *-- ActivatorLR
|
|
LegLeft *-- JointLL
|
|
LegLeft *-- ActivatorLL
|
|
|
|
@enduml
|