Skip to content
Snippets Groups Projects
Commit 9c2307df authored by Fons Rademakers's avatar Fons Rademakers
Browse files

Fix html in release notes.

git-svn-id: http://root.cern.ch/svn/root/trunk@44149 27541ba8-7e3a-0410-8455-c3a389f83636
parent 71bf5771
No related branches found
No related tags found
Loading
......@@ -70,18 +70,18 @@
New method DivideSquare a canvas in to n sub-pads. The number of sub-pads
along the X and Y axis are computed according to the square root of n.
Example:
</li>
<pre>
void divsquare(int w, int h, int n)
{
TCanvas *c = new TCanvas ("c","c",0,0,w,h);
c->DivideSquare(n);
for (int i=1; i<=n; i++) {
for (int i=1; i&lt;=n; i++) {
c->cd(i);
gPad->DrawFrame(0,0,1,1);
}
}
</pre>
</li>
<li> TPad::Print always use TImageDump to print gif, png and jpeg files, in
interactive and batch mode (previously it was used in the batch case only).
This allows to generate output transparent colors in these formats even in
......@@ -99,4 +99,4 @@ An example of a TCanvas with a THStack object, transparency, anti-aliasing, grad
</p>
<img alt="Transparency and gradients" width="750" height="484" title="Transparency and gradients" src="quartz2d.gif"/>
<br />ROOT must be configured with <strong>--enable-cocoa</strong> parameter to use Cocoa back-end instead of X11 version.
<strong>Please note</strong>, this is still a work in progress.
\ No newline at end of file
<strong>Please note</strong>, this is still a work in progress.
......@@ -32,7 +32,7 @@
<h4>TGFileDialog</h4>
<ul>
<li>Change the file name only if the selected entry is not a directory (as reported <a href="http://root.cern.ch/phpBB3//viewtopic.php?f=3&t=14370">on the forum</a>)</li>
<li>Change the file name only if the selected entry is not a directory (as reported <a href="http://root.cern.ch/phpBB3//viewtopic.php?f=3&amp;t=14370">on the forum</a>)</li>
</ul>
<h4>TGMsgBox</h4>
......@@ -63,12 +63,12 @@
<h4>TTreeViewer</h4>
<ul>
<li>Fixed a problem with array names (e.g. <tt>fVertex[]</tt>) as reported <a href="http://root.cern.ch/phpBB3//viewtopic.php?f=3&t=14507">on the forum</a>)</li>
<li>Fixed a problem with array names (e.g. <tt>fVertex[]</tt>) as reported <a href="http://root.cern.ch/phpBB3//viewtopic.php?f=3&amp;t=14507">on the forum</a>)</li>
</ul>
<h4>TGWin32</h4>
<ul>
<li>Fixed several resource leaks (including GDI & USER objects)</li>
<li>Fixed several resource leaks (including GDI &amp; USER objects)</li>
</ul>
......@@ -116,7 +116,7 @@ following example:
Double_t dx = 6.28/100;
Double_t x = -3.14;
for (int i=0; i<=100; i++) {
for (int i=0; i&lt;=100; i++) {
x = x+dx;
gr1->SetPoint(i,x,2.*TMath::Sin(x));
gr2->SetPoint(i,x,TMath::Cos(x));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment