@@ -10,80 +10,19 @@ Changes in 4.3
1010
1111###Formatting options are added for proxy documentation###
1212Documentation for proxies (and for input properties for proxies)
13- accepts reStructured text (RST) formatting options. Supported options
14- are: bold, italic, unordered lists, and paragraphs. Nested unordered
15- lists are not supported. Note that the text enclosed between
16- ** Documentation** tags has to be alligned at column 0, (space is
13+ accepts reStructured text(RST) formatting options. Supported options
14+ are: ** bold** (use `` **bold** `` ), * italic* (use `` *italic* `` ),
15+ unordered lists, and paragraphs (use an empty line). Unordered list
16+ are formatted like in the following example, with an empty line
17+ before and after the list.
18+
19+ - first item
20+ - second item
21+
22+ Nested lists are not supported. Note that the text enclosed between
23+ ** Documentation** tags has to be aligned at column 0, (space is
1724significant in RST documents) and that we do not accept empty lines
1825between items in an unordered list. Formatted output will be displayed
1926in ParaView online help, ParaView Python documentation, and tooltips
2027displayed in ParaView client. See the ** Calculator** and ** Glyph**
21- filters for examples on how to format other filters. Next we show the
22- calculator filter proxy documentation which includes formatting
23- options for bold, paragraphs and an unordered list.
24-
25- <Documentation>
26- The Calculator filter computes a new data array or new point
27- coordinates as a function of existing scalar or vector arrays. If
28- point-centered arrays are used in the computation of a new data array,
29- the resulting array will also be point-centered. Similarly,
30- computations using cell-centered arrays will produce a new
31- cell-centered array. If the function is computing point coordinates,
32- the result of the function must be a three-component vector.
33-
34- The Calculator interface operates similarly to a scientific
35- calculator. In creating the function to evaluate, the standard order
36- of operations applies. Each of the calculator functions is described
37- below. Unless otherwise noted, enclose the operand in parentheses
38- using the ( and ) buttons.
39-
40- - Clear: Erase the current function (displayed in the read-only text
41- box above the calculator buttons).
42- - /: Divide one scalar by another. The operands for this function are
43- not required to be enclosed in parentheses.
44- - *: Multiply two scalars, or multiply a vector by a scalar (scalar multiple).
45- The operands for this function are not required to be enclosed in parentheses.
46- - -: Negate a scalar or vector (unary minus), or subtract one scalar or vector
47- from another. The operands for this function are not required to be enclosed
48- in parentheses.
49- - +: Add two scalars or two vectors. The operands for this function are not
50- required to be enclosed in parentheses.
51- - sin: Compute the sine of a scalar. cos: Compute the cosine of a scalar.
52- - tan: Compute the tangent of a scalar.
53- - asin: Compute the arcsine of a scalar.
54- - acos: Compute the arccosine of a scalar.
55- - atan: Compute the arctangent of a scalar.
56- - sinh: Compute the hyperbolic sine of a scalar.
57- - cosh: Compute the hyperbolic cosine of a scalar.
58- - tanh: Compute the hyperbolic tangent of a scalar.
59- - min: Compute minimum of two scalars.
60- - max: Compute maximum of two scalars.
61- - x^y: Raise one scalar to the power of another scalar. The operands for
62- this function are not required to be enclosed in parentheses.
63- - sqrt: Compute the square root of a scalar.
64- - e^x: Raise e to the power of a scalar.
65- - log: Compute the logarithm of a scalar (deprecated. same as log10).
66- - log10: Compute the logarithm of a scalar to the base 10.
67- - ln: Compute the logarithm of a scalar to the base 'e'.
68- - ceil: Compute the ceiling of a scalar. floor: Compute the floor of a scalar.
69- - abs: Compute the absolute value of a scalar.
70- - v1.v2: Compute the dot product of two vectors. The operands for this
71- function are not required to be enclosed in parentheses.
72- - cross: Compute cross product of two vectors.
73- - mag: Compute the magnitude of a vector.
74- - norm: Normalize a vector.
75-
76- The operands are described below. The digits 0 - 9 and the decimal
77- point are used to enter constant scalar values. **iHat**, **jHat**,
78- and **kHat** are vector constants representing unit vectors in the X,
79- Y, and Z directions, respectively. The scalars menu lists the names of
80- the scalar arrays and the components of the vector arrays of either
81- the point-centered or cell-centered data. The vectors menu lists the
82- names of the point-centered or cell-centered vector arrays. The
83- function will be computed for each point (or cell) using the scalar or
84- vector value of the array at that point (or cell). The filter operates
85- on any type of data set, but the input data set must have at least one
86- scalar or vector array. The arrays can be either point-centered or
87- cell-centered. The Calculator filter's output is of the same data set
88- type as the input.
89- </Documentation>
28+ filters for examples on how to format other filters.
0 commit comments