This ROOT 7 example shows the various line widths.
#include "ROOT/RText.hxx"
#include "ROOT/RLine.hxx"
{
auto canvas = RCanvas::Create("Different line widths");
double num = 0.3;
for (int i = 10; i > 0; i--){
num = num + 0.05;
text->text.align = RAttrText::kRightCenter;
text->text.font = RAttrFont::kArialOblique;
}
canvas->Show();
}
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char text
A position (horizontal and vertical) in a RPad.
- Date
- 2018-03-18
- Warning
- This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
- Authors
- Iliana Betsou, Sergey Linev
Definition in file rline_width.cxx.