This file is indexed.

/usr/share/qt5/doc/qtsvg/qtsvg-svgviewer-files-cubic-svg.html is in qtsvg5-doc-html 5.9.5-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>cubic.svg Example File | Qt SVG 5.9</title>
  <link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
  <script type="text/javascript">
    document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");
    // loading style sheet breaks anchors that were jumped to before
    // so force jumping to anchor again
    setTimeout(function() {
        var anchor = location.hash;
        // need to jump to different anchor first (e.g. none)
        location.hash = "#";
        setTimeout(function() {
            location.hash = anchor;
        }, 0);
    }, 0);
  </script>
</head>
<body>
<div class="header" id="qtdocheader">
  <div class="main">
    <div class="main-rounded">
      <div class="navigationbar">
        <table><tr>
<td >Qt 5.9</td><td ><a href="qtsvg-index.html">Qt SVG</a></td><td ><a href="qtsvg-svgviewer-example.html">SVG Viewer Example</a></td><td >cubic.svg Example File</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right">Qt 5.9.5 Reference Documentation</td>
        </tr></table>
      </div>
    </div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">cubic.svg Example File</h1>
<span class="subtitle">svgviewer/files/cubic.svg</span>
<!-- $$$svgviewer/files/cubic.svg-description -->
<div class="descr"> <a name="details"></a>
<pre class="cpp">

  &lt;?xml version=&quot;1.0&quot; standalone=&quot;no&quot;?&gt;
  &lt;svg width=&quot;10cm&quot; height=&quot;10cm&quot; viewBox=&quot;0 0 1000 1000&quot;
       xmlns=&quot;http://www.w3.org/2000/svg&quot; version=&quot;1.2&quot; baseProfile=&quot;tiny&quot;&gt;
    &lt;title&gt;Example cubic02 - cubic Bezier commands in path data&lt;/title&gt;
    &lt;desc&gt;Picture showing examples of &quot;C&quot; and &quot;S&quot; commands,
          along with annotations showing the control points
          and end points&lt;/desc&gt;

    &lt;rect fill=&quot;none&quot; stroke=&quot;blue&quot; stroke-width=&quot;1&quot; x=&quot;1&quot; y=&quot;1&quot; width=&quot;998&quot; height=&quot;998&quot; /&gt;

    &lt;!-- Path 1 --&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;100,200 100,100&quot; /&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;400,100 400,200&quot; /&gt;
    &lt;path fill=&quot;none&quot; stroke=&quot;red&quot; stroke-width=&quot;5&quot; d=&quot;M100,200 C100,100 400,100 400,200&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;100&quot; cy=&quot;200&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;400&quot; cy=&quot;200&quot; r=&quot;10&quot; /&gt;
    &lt;circle class=&quot;CtlPoint&quot; cx=&quot;100&quot; cy=&quot;100&quot; r=&quot;10&quot; /&gt;
    &lt;circle class=&quot;CtlPoint&quot; cx=&quot;400&quot; cy=&quot;100&quot; r=&quot;10&quot; /&gt;
    &lt;text text-anchor=&quot;middle&quot; font-size=&quot;22&quot; font-family=&quot;Verdana&quot; x=&quot;250&quot; y=&quot;275&quot;&gt;M100,200 C100,100 400,100 400,200&lt;/text&gt;

    &lt;!-- Path 2 --&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;100,500 25,400&quot; /&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;475,400 400,500&quot; /&gt;
    &lt;path fill=&quot;none&quot; stroke=&quot;red&quot; stroke-width=&quot;5&quot; d=&quot;M100,500 C25,400 475,400 400,500&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;100&quot; cy=&quot;500&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;400&quot; cy=&quot;500&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;#888888&quot; stroke=&quot;none&quot; cx=&quot;25&quot; cy=&quot;400&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;#888888&quot; stroke=&quot;none&quot; cx=&quot;475&quot; cy=&quot;400&quot; r=&quot;10&quot; /&gt;
    &lt;text text-anchor=&quot;middle&quot; font-size=&quot;22&quot; font-family=&quot;Verdana&quot; x=&quot;250&quot; y=&quot;575&quot;&gt;M100,500 C25,400 475,400 400,500&lt;/text&gt;

    &lt;!-- Path 3 --&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;100,800 175,700&quot; /&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;325,700 400,800&quot; /&gt;
    &lt;path fill=&quot;none&quot; stroke=&quot;red&quot; stroke-width=&quot;5&quot; d=&quot;M100,800 C175,700 325,700 400,800&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;100&quot; cy=&quot;800&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;400&quot; cy=&quot;800&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;#888888&quot; stroke=&quot;none&quot; cx=&quot;175&quot; cy=&quot;700&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;#888888&quot; stroke=&quot;none&quot; cx=&quot;325&quot; cy=&quot;700&quot; r=&quot;10&quot; /&gt;
    &lt;text text-anchor=&quot;middle&quot; font-size=&quot;22&quot; font-family=&quot;Verdana&quot; x=&quot;250&quot; y=&quot;875&quot;&gt;M100,800 C175,700 325,700 400,800&lt;/text&gt;

    &lt;!-- Path 4 --&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;600,200 675,100&quot; /&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;975,100 900,200&quot; /&gt;
    &lt;path fill=&quot;none&quot; stroke=&quot;red&quot; stroke-width=&quot;5&quot; d=&quot;M600,200 C675,100 975,100 900,200&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;600&quot; cy=&quot;200&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;900&quot; cy=&quot;200&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;#888888&quot; stroke=&quot;none&quot; cx=&quot;675&quot; cy=&quot;100&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;#888888&quot; stroke=&quot;none&quot; cx=&quot;975&quot; cy=&quot;100&quot; r=&quot;10&quot; /&gt;
    &lt;text text-anchor=&quot;middle&quot; font-size=&quot;22&quot; font-family=&quot;Verdana&quot; x=&quot;750&quot; y=&quot;275&quot;&gt;M600,200 C675,100 975,100 900,200&lt;/text&gt;

    &lt;!-- Path 5 --&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;600,500 600,350&quot; /&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;900,650 900,500&quot; /&gt;
    &lt;path fill=&quot;none&quot; stroke=&quot;red&quot; stroke-width=&quot;5&quot; d=&quot;M600,500 C600,350 900,650 900,500&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;600&quot; cy=&quot;500&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;900&quot; cy=&quot;500&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;#888888&quot; stroke=&quot;none&quot; cx=&quot;600&quot; cy=&quot;350&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;#888888&quot; stroke=&quot;none&quot; cx=&quot;900&quot; cy=&quot;650&quot; r=&quot;10&quot; /&gt;
    &lt;text text-anchor=&quot;middle&quot; font-size=&quot;22&quot; font-family=&quot;Verdana&quot; x=&quot;750&quot; y=&quot;575&quot;&gt;M600,500 C600,350 900,650 900,500&lt;/text&gt;

    &lt;!-- Path 6 (C and S command) --&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;600,800 625,700&quot; /&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;725,700 750,800&quot; /&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;750,800 775,900&quot; /&gt;
    &lt;polyline fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; points=&quot;875,900 900,800&quot; /&gt;
    &lt;path fill=&quot;none&quot; stroke=&quot;red&quot; stroke-width=&quot;5&quot; d=&quot;M600,800 C625,700 725,700 750,800
                                         S875,900 900,800&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;600&quot; cy=&quot;800&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;750&quot; cy=&quot;800&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;#888888&quot; stroke-width=&quot;2&quot; cx=&quot;900&quot; cy=&quot;800&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;#888888&quot; stroke=&quot;none&quot; cx=&quot;625&quot; cy=&quot;700&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;#888888&quot; stroke=&quot;none&quot; cx=&quot;725&quot; cy=&quot;700&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;#888888&quot; stroke=&quot;none&quot; cx=&quot;875&quot; cy=&quot;900&quot; r=&quot;10&quot; /&gt;
    &lt;circle fill=&quot;none&quot; stroke=&quot;blue&quot; stroke-width=&quot;4&quot; cx=&quot;775&quot; cy=&quot;900&quot; r=&quot;9&quot; /&gt;
    &lt;text text-anchor=&quot;middle&quot; font-size=&quot;22&quot; font-family=&quot;Verdana&quot; x=&quot;750&quot; y=&quot;945&quot;&gt;M600,800 C625,700 725,700 750,800&lt;/text&gt;
    &lt;text text-anchor=&quot;middle&quot; font-size=&quot;22&quot; font-family=&quot;Verdana&quot; x=&quot;750&quot; y=&quot;975&quot;&gt;S875,900 900,800&lt;/text&gt;
  &lt;/svg&gt;

</pre>
</div>
<!-- @@@svgviewer/files/cubic.svg -->
        </div>
       </div>
   </div>
   </div>
</div>
<div class="footer">
   <p>
   <acronym title="Copyright">&copy;</acronym> 2017 The Qt Company Ltd.
   Documentation contributions included herein are the copyrights of
   their respective owners.<br>    The documentation provided herein is licensed under the terms of the    <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation    License version 1.3</a> as published by the Free Software Foundation.<br>    Qt and respective logos are trademarks of The Qt Company Ltd.     in Finland and/or other countries worldwide. All other trademarks are property
   of their respective owners. </p>
</div>
</body>
</html>