Loading [MathJax]/extensions/tex2jax.js
Logo ROOT   6.16/01
Reference Guide
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
text.cxx File Reference

Detailed Description

/*************************************************************************
* Copyright (C) 1995-2015, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#include "ROOT/RCanvas.hxx"
#include "ROOT/RColor.hxx"
#include "ROOT/RText.hxx"
#include "ROOT/RPadPos.hxx"
void text()
{
using namespace ROOT::Experimental;
// Create a canvas to be displayed.
auto canvas = RCanvas::Create("Canvas Title");
for (int i=0; i<=360; i+=10) {
auto opts = canvas->Draw(RText({0.5_normal, 0.6_normal}, "____ Hello World"));
RColor col(0.0015*i, 0.0025*i ,0.003*i);
opts->SetTextColor(col);
opts->SetTextSize(10+i/10);
opts->SetTextAngle(i);
opts->SetTextAlign(13);
opts->SetTextFont(42);
}
canvas->Show();
}
TText * text
Date
2017-10-17
Warning
This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
Author
Olivier couet Olivi.nosp@m.er.C.nosp@m.ouet@.nosp@m.cern.nosp@m..ch

Definition in file text.cxx.