This file is indexed.

/usr/share/octave/packages/geometry-1.7.0/shape2d/doc-cache is in octave-geometry 1.7.0-1build1.

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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
# Created by Octave 3.8.0, Tue Feb 25 00:03:01 2014 UTC <root@aatxe>
# name: cache
# type: cell
# rows: 3
# columns: 7
# name: <cell-element>
# type: sq_string
# elements: 1
# length: 14
curve2polyline


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 832
 -- Function File: POLYLINE = curve2polyline (CURVE)
 -- Function File: POLYLINE = curve2polyline (...,PROPERTY,VALUE,...)
     Adaptive sampling of a parametric curve.

     The CURVE is described as a 2-by-N matrix.  Rows correspond to the
     polynomial (compatible with 'polyval') describing the respective
     component of the curve.  The curve must be parametrized in the
     interval [0,1].  The vertices of the polyline are accumulated in
     regions of the curve where the curvature is higher.

     *Parameters*
     ''Nmax''
          Maximum number of vertices.  Not used.
     ''Tol''
          Tolerance for the error criteria.  Default value '1e-4'.
     ''MaxIter''
          Maximum number of iterations.  Default value '10'.
     ''Method''
          Not implemented.

     See also: shape2polygon, curveval.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 40
Adaptive sampling of a parametric curve.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 8
curveval


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 82
 -- Function File: P = curveval (CURVE, T)
     Evaluates parametric CURVE at T.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 32
Evaluates parametric CURVE at T.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 13
shape2polygon


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 492
 -- Function File: POLYGON = shape2polygon (SHAPE)
 -- Function File: POLYGON = shape2polygon (...,PROPERTY,VALUE,...)
     Transforms a 2D shape described by piecewise smooth polynomials
     into a polygon.

     SHAPE is a n-by-1 cell where each element is a pair of polynomials
     compatible with polyval.  POLYGON is a k-by-2 matrix, where each
     row represents a vertex.  The property-value pairs are passed to
     'curve2polyline'.

     See also: polygon2shape, curve2poyline.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 79
Transforms a 2D shape described by piecewise smooth polynomials into a
polygon.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 9
shapearea


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 407
 -- Function File: A = shapearea (PP)
     Calculate the area of a 2D shape defined with piecewise smooth
     polynomials.

     Shape is defined with piecewise smooth polynomials.  PP is a cell
     where each elements is a 2-by-(poly_degree+1) array containing a
     pair of polynomials.

     'px(i,:) = pp{i}(1,:)' and 'py(i,:) = pp{i}(2,:)'.

     See also: shapecentroid, shape2polygon, shapeplot.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 75
Calculate the area of a 2D shape defined with piecewise smooth
polynomials.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 13
shapecentroid


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 522
 -- Function File: CM = shapecentroid (PP)
     Centroid of a simple plane shape defined with piecewise smooth
     polynomials.

     The shape is defined with piecewise smooth polynomials.  PP is a
     cell where each elements is a 2-by-(poly_degree+1) matrix
     containing a pair of polynomials.  'px(i,:) = pp{i}(1,:)' and
     'py(i,:) = pp{i}(2,:)'.

     The edges of the shape should not self-intersect.  This function
     does not check for the sanity of the shape.

     See also: shapearea, shape2polygon.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 75
Centroid of a simple plane shape defined with piecewise smooth
polynomials.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 9
shapeplot


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 515
 -- Function File: H = shapeplot (SHAPE)
 -- Function File: H = shapeplot (SHAPE, N)
 -- Function File: H = shapeplot (..., PARAM, VALUE)
     Pots a 2D shape defined by piecewise smooth polynomials in the
     current axis.

     PP is a cell where each elements is a 2-by-(poly_degree+1) matrix
     containing a pair of polynomials.  N is the number of points to be
     used in non-straight edges.  Additional parameter value pairs are
     passed to 'drawPolygon'.

     See also: drawPolygon, shape2polygon.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 76
Pots a 2D shape defined by piecewise smooth polynomials in the current
axis.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 14
shapetransform


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 462
 -- Function File: NSHAPE = shapetransform (SHAPE, T)
     Applies transformation to a shape defined by piecewise smooth
     polynomials.

     SHAPE is a cell where each elements is a 2-by-(poly_degree+1)
     matrix containing a pair of polynomials.

     Format of T can be one of :
           [c] , [a b] , [a b c] or [a b c]
           [f]   [d e]   [d e f]    [d e f]
                                    [0 0 1]

     See also: shape2polygon, shapeplot.




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 74
Applies transformation to a shape defined by piecewise smooth
polynomials.