2021-01-26 21:05:56 +03:00
|
|
|
@startuml
|
|
|
|
'https://plantuml.com/class-diagram
|
|
|
|
|
|
|
|
interface Vision{
|
|
|
|
val parent: Vision?
|
2021-08-07 11:27:57 +03:00
|
|
|
fun getProperty(name): Meta?
|
2021-01-26 21:05:56 +03:00
|
|
|
fun setProperty(name, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
class VisionBase{
|
|
|
|
basic vision
|
|
|
|
implementation
|
|
|
|
}
|
|
|
|
Vision <|-- VisionBase
|
|
|
|
|
|
|
|
interface VisionGroup{
|
|
|
|
A group of Visions
|
|
|
|
}
|
|
|
|
Vision <|-- VisionGroup
|
|
|
|
|
|
|
|
interface Solid{
|
|
|
|
The base for 3D geometry
|
|
|
|
}
|
|
|
|
|
|
|
|
Vision <|-- Solid
|
|
|
|
|
|
|
|
class SolidGroup
|
|
|
|
|
|
|
|
Solid <|-- SolidGroup
|
|
|
|
VisionGroup <|-- SolidGroup
|
|
|
|
|
|
|
|
class Composite
|
|
|
|
Solid <|-- Composite
|
|
|
|
VisionGroup <|-- Composite
|
|
|
|
|
|
|
|
class Box
|
|
|
|
Solid <|-- Box
|
|
|
|
|
|
|
|
class Tube
|
|
|
|
Solid <|-- Tube
|
|
|
|
|
|
|
|
class Sphere
|
|
|
|
Solid <|-- Sphere
|
|
|
|
|
|
|
|
@enduml
|