User:Marcus.hanwell: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
mNo edit summary
mNo edit summary
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
<graphviz renderer='neato' caption='Class diagram?'>
== 2D API ==
digraph UML {
 
 
 
<graphviz renderer='neato' caption='Chart Classes'>
digraph Charts {
   node [
   node [
     fontsize = 10
     fontsize = 10
Line 14: Line 18:


   // Classes
   // Classes
  vtk2DActor
  vtk2DPainter
   vtkChart
   vtkChart
  vtkChartXY
  vtkChartParallel
  vtkChartPie
   vtkPlot
   vtkPlot
  vtkPlotLine
  vtkPlotStacked
  vtkPlotBar
  vtkPlotGrid
   vtkAxis
   vtkAxis
  vtkLegend


//
// Subclass relationships
// Subclass relationships
//
//
// A -> B means
// A -> B means
// A is the superclass of B
// A is the superclass of B
Line 30: Line 45:
   arrowhead = none
   arrowhead = none
]
]
  vtkChart -> vtkChartXY
  vtkChart -> vtkChartParallel
  vtkChart -> vtkChartPie
  vtkPlot -> vtkPlotLine
  vtkPlot -> vtkPlotStacked
  vtkPlot -> vtkPlotBar


//
// "owns the lifetime of"
// "owns the lifetime of"
//
edge [
edge [
   arrowtail = diamond
   arrowtail = diamond
Line 40: Line 59:
]
]


//
// "has a pointer to"
// "has a pointer to"
//
edge [
edge [
   arrowtail = odiamond
   arrowtail = odiamond
Line 49: Line 65:
]
]


   vtkChart -> vtkPlot
   vtkChartXY -> vtkPlot
   vtkChart -> vtkAxis
   vtkChartXY -> vtkPlotGrid
  vtkChartXY -> vtkAxis
  vtkChartXY -> vtkLegend
 
  vtk2DActor -> vtkChart
  vtk2DActor -> vtk2DPainter
}
}
</graphviz>
</graphviz>

Latest revision as of 17:29, 21 October 2009

2D API

Chart Classes