mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-21 14:03:18 -06:00
36 lines
430 B
Plaintext
36 lines
430 B
Plaintext
@startuml
|
|
|
|
class RimView {
|
|
RimViewGeometry* viewGeometry()
|
|
}
|
|
|
|
class Rim3dView {
|
|
}
|
|
|
|
class RimPlotView {
|
|
}
|
|
|
|
|
|
RimView <|-- RimPlotView
|
|
RimView <|-- Rim3dView
|
|
|
|
|
|
RimView *-- RimViewGeometry
|
|
|
|
RimPlotView <|-- RimWellLogPlot
|
|
RimPlotView <|-- RimSummaryPlot
|
|
|
|
Rim3dView <|-- RimEclipseView
|
|
Rim3dView <|-- RimGeoMechView
|
|
|
|
class RimWindow {
|
|
}
|
|
|
|
RimViewGeometry --> RimWindow
|
|
|
|
class RimViewGeometry {
|
|
PtrField<RimWindow> window
|
|
}
|
|
|
|
@enduml
|