2021-01-26 21:05:56 +03:00
|
|
|
@startuml
|
|
|
|
'https://plantuml.com/class-diagram
|
|
|
|
|
2021-08-17 19:07:28 +03:00
|
|
|
interface Vision{
|
|
|
|
val parent: VisionGroup?
|
|
|
|
fun getProperty(name):TypedMetaItem?
|
|
|
|
fun setProperty(name, item)
|
|
|
|
}
|
2021-01-26 21:05:56 +03:00
|
|
|
|
2021-08-17 18:52:32 +03:00
|
|
|
interface Solid{
|
|
|
|
base of 3D geometries
|
|
|
|
}
|
2021-08-16 13:21:00 +03:00
|
|
|
Vision <- Solid
|
2021-08-10 13:21:35 +03:00
|
|
|
|
2021-08-17 18:52:32 +03:00
|
|
|
class VisionGroup{
|
|
|
|
a group of visions
|
|
|
|
}
|
2021-01-26 21:05:56 +03:00
|
|
|
|
2021-08-11 17:55:15 +03:00
|
|
|
Vision <-- VisionGroup
|
2021-01-26 21:05:56 +03:00
|
|
|
|
2021-08-17 18:52:32 +03:00
|
|
|
class VisionBase{
|
|
|
|
basic vision
|
|
|
|
implementation
|
|
|
|
}
|
2021-08-16 13:21:00 +03:00
|
|
|
Vision <- VisionBase
|
2021-01-26 21:05:56 +03:00
|
|
|
|
|
|
|
|
2021-08-11 17:55:15 +03:00
|
|
|
class SolidLabel
|
|
|
|
Solid <--- SolidLabel
|
2021-01-26 21:05:56 +03:00
|
|
|
|
|
|
|
class SolidGroup
|
2021-08-11 17:55:15 +03:00
|
|
|
Solid <--- SolidGroup
|
2021-08-17 19:07:28 +03:00
|
|
|
MutableVisionGroup <-- SolidGroup
|
2021-01-26 21:05:56 +03:00
|
|
|
|
2021-08-11 17:55:15 +03:00
|
|
|
|
|
|
|
class SphereLayer
|
|
|
|
GeometrySolid <-- SphereLayer
|
|
|
|
|
|
|
|
class Sphere
|
|
|
|
GeometrySolid <-- Sphere
|
2021-01-26 21:05:56 +03:00
|
|
|
|
|
|
|
class Box
|
2021-08-11 17:55:15 +03:00
|
|
|
Hexagon <-- Box
|
2021-01-26 21:05:56 +03:00
|
|
|
|
2021-08-11 17:55:15 +03:00
|
|
|
class GenericHexagon
|
|
|
|
Hexagon <-- GenericHexagon
|
|
|
|
|
|
|
|
class Extruded
|
|
|
|
GeometrySolid <-- Extruded
|
|
|
|
|
|
|
|
|
|
|
|
class PolyLine
|
|
|
|
Solid <--- PolyLine
|
|
|
|
|
|
|
|
interface GeometrySolid
|
|
|
|
Solid <--- GeometrySolid
|
|
|
|
|
|
|
|
|
|
|
|
interface Hexagon
|
|
|
|
GeometrySolid <-- Hexagon
|
|
|
|
|
|
|
|
class ConeSegment
|
|
|
|
GeometrySolid <-- ConeSegment
|
|
|
|
|
|
|
|
class ConeSurface
|
|
|
|
GeometrySolid <-- ConeSurface
|
|
|
|
|
|
|
|
|
|
|
|
class Convex
|
|
|
|
Solid <--- Convex
|
|
|
|
|
|
|
|
class Composite
|
|
|
|
Solid <--- Composite
|
|
|
|
|
|
|
|
|
|
|
|
interface SolidReference
|
|
|
|
VisionGroup <---- SolidReference
|
|
|
|
|
2021-08-17 19:07:28 +03:00
|
|
|
interface MutableVisionGroup
|
|
|
|
VisionGroup <---- MutableVisionGroup
|
|
|
|
|
2021-08-11 17:55:15 +03:00
|
|
|
class SolidReferenceGroup
|
|
|
|
VisionGroup <-- SolidReferenceGroup
|
|
|
|
Solid <-- SolidReferenceGroup
|
|
|
|
VisionBase <-- SolidReferenceGroup
|
|
|
|
SolidReference <-- SolidReferenceGroup
|
|
|
|
|
|
|
|
class ReferenceChild
|
|
|
|
VisionGroup <-- ReferenceChild
|
|
|
|
Solid <-- ReferenceChild
|
|
|
|
SolidReference <-- ReferenceChild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class RootVisionGroup
|
2021-08-17 19:07:28 +03:00
|
|
|
MutableVisionGroup <-- RootVisionGroup
|
2021-01-26 21:05:56 +03:00
|
|
|
|
|
|
|
|
2021-08-11 17:55:15 +03:00
|
|
|
class VisionOfPlotly
|
|
|
|
VisionBase <-- VisionOfPlotly
|
2021-01-26 21:05:56 +03:00
|
|
|
@enduml
|