diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
commit | dcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch) | |
tree | d57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqcanvasspline.html | |
parent | 649c4c61a1f1f479f4532b196f68df476cef2680 (diff) | |
download | tqt-rename/true-false-4.tar.gz tqt-rename/true-false-4.zip |
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqcanvasspline.html')
-rw-r--r-- | doc/html/tqcanvasspline.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tqcanvasspline.html b/doc/html/tqcanvasspline.html index 96366314c..57395ea01 100644 --- a/doc/html/tqcanvasspline.html +++ b/doc/html/tqcanvasspline.html @@ -39,7 +39,7 @@ body { background: #ffffff; color: black; } <ul> <li class=fn><a href="#TQCanvasSpline"><b>TQCanvasSpline</b></a> ( TQCanvas * canvas )</li> <li class=fn><a href="#~TQCanvasSpline"><b>~TQCanvasSpline</b></a> ()</li> -<li class=fn>void <a href="#setControlPoints"><b>setControlPoints</b></a> ( TQPointArray ctrl, bool close = TRUE )</li> +<li class=fn>void <a href="#setControlPoints"><b>setControlPoints</b></a> ( TQPointArray ctrl, bool close = true )</li> <li class=fn>TQPointArray <a href="#controlPoints"><b>controlPoints</b></a> () const</li> <li class=fn>bool <a href="#closed"><b>closed</b></a> () const</li> <li class=fn>virtual int <a href="#rtti"><b>rtti</b></a> () const</li> @@ -80,8 +80,8 @@ Destroy the spline. <h3 class=fn>bool <a name="closed"></a>TQCanvasSpline::closed () const </h3> -Returns TRUE if the control points are a closed set; otherwise -returns FALSE. +Returns true if the control points are a closed set; otherwise +returns false. <h3 class=fn><a href="tqpointarray.html">TQPointArray</a> <a name="controlPoints"></a>TQCanvasSpline::controlPoints () const </h3> @@ -94,12 +94,12 @@ Returns 8 (TQCanvasItem::Rtti_Spline). <p> <p>See also <a href="tqcanvasitem.html#rtti">TQCanvasItem::rtti</a>(). <p>Reimplemented from <a href="tqcanvaspolygon.html#rtti">TQCanvasPolygon</a>. -<h3 class=fn>void <a name="setControlPoints"></a>TQCanvasSpline::setControlPoints ( <a href="tqpointarray.html">TQPointArray</a> ctrl, bool close = TRUE ) +<h3 class=fn>void <a name="setControlPoints"></a>TQCanvasSpline::setControlPoints ( <a href="tqpointarray.html">TQPointArray</a> ctrl, bool close = true ) </h3> Set the spline control points to <em>ctrl</em>. -<p> If <em>close</em> is TRUE, then the first point in <em>ctrl</em> will be +<p> If <em>close</em> is true, then the first point in <em>ctrl</em> will be re-used as the last point, and the number of control points must -be a multiple of 3. If <em>close</em> is FALSE, one additional control +be a multiple of 3. If <em>close</em> is false, one additional control point is required, and the number of control points must be one of (4, 7, 10, 13, ...). <p> If the number of control points doesn't meet the above conditions, |