|
9 | 9 | The \tcode{brush_props} class provides general state information that is applicable to all rendering and composing operations (\ref{\iotwod.surface.rendering}). |
10 | 10 |
|
11 | 11 | \pnum |
12 | | -It has a Wrap Mode of type \tcode{wrap_mode}, a Filter of type \tcode{filter}, a Fill Rule of type \tcode{fill_rule}, and a Brush Matrix of type \tcode{matrix_2d}. |
| 12 | +It has a \term{wrap mode} of type \tcode{wrap_mode}, a \term{filter} of type \tcode{filter}, a \term{fill rule} of type \tcode{fill_rule}, and a \term{brush matrix} of type \tcode{matrix_2d}. |
13 | 13 |
|
14 | 14 | \rSec1 [\iotwod.brushprops.synopsis] {\tcode{brush_props} synopsis} |
15 | 15 |
|
|
41 | 41 |
|
42 | 42 | \rSec1 [\iotwod.brushprops.cons] {\tcode{brush_props} constructors} |
43 | 43 |
|
44 | | -\indexlibrary{\idxcode{brush_props}!constructor} |
| 44 | +\indexlibrary{\idxcode{brush_props}!constructor}% |
45 | 45 | \begin{itemdecl} |
46 | 46 | constexpr brush_props( |
47 | 47 | experimental::io2d::wrap_mode w = experimental::io2d::wrap_mode::none, |
|
56 | 56 |
|
57 | 57 | \pnum |
58 | 58 | \effects |
59 | | -The value of Wrap Mode is \tcode{w}. |
| 59 | +Constructs an object of type \tcode{brush_props}. |
60 | 60 |
|
61 | 61 | \pnum |
62 | | -The value of Filter is \tcode{fi}. |
63 | | - |
64 | | -\pnum |
65 | | -The value of Fill Rule is \tcode{fr}. |
66 | | - |
67 | | -\pnum |
68 | | -The value of Brush Matrix is \tcode{m}. |
| 62 | +The wrap mode is \tcode{w}. The filter is \tcode{fi}. The fill rule is \tcode{fr}. The brush matrix is \tcode{m}. |
69 | 63 | \end{itemdescr} |
70 | 64 |
|
71 | 65 | \rSec1 [\iotwod.brushprops.modifiers] {\tcode{brush_props} modifiers} |
72 | 66 |
|
73 | | -\indexlibrary{\idxcode{brush_props}!\idxcode{wrap_mode}} |
| 67 | +\indexlibrarymember{brush_props}{wrap_mode}% |
74 | 68 | \begin{itemdecl} |
75 | 69 | constexpr void wrap_mode(experimental::io2d::wrap_mode w) noexcept; |
76 | 70 | \end{itemdecl} |
77 | 71 | \begin{itemdescr} |
78 | 72 | \pnum |
79 | 73 | \effects |
80 | | -The value of Wrap Mode is \tcode{w}. |
| 74 | +The wrap mode is \tcode{w}. |
81 | 75 | \end{itemdescr} |
82 | 76 |
|
83 | | -\indexlibrary{\idxcode{brush_props}!\idxcode{filter}} |
| 77 | +\indexlibrarymember{brush_props}{filter}% |
84 | 78 | \begin{itemdecl} |
85 | 79 | constexpr void filter(experimental::io2d::filter fi) noexcept; |
86 | 80 | \end{itemdecl} |
87 | 81 | \begin{itemdescr} |
88 | 82 | \pnum |
89 | 83 | \effects |
90 | | -The value of Filter is \tcode{fi}. |
| 84 | +The filter is \tcode{fi}. |
91 | 85 | \end{itemdescr} |
92 | 86 |
|
93 | | -\indexlibrary{\idxcode{brush_props}!\idxcode{fill_rule}} |
| 87 | +\indexlibrarymember{brush_props}{fill_rule}% |
94 | 88 | \begin{itemdecl} |
95 | 89 | constexpr void fill_rule(experimental::io2d::fill_rule fr) noexcept; |
96 | 90 | \end{itemdecl} |
97 | 91 | \begin{itemdescr} |
98 | 92 | \pnum |
99 | 93 | \effects |
100 | | -The value of Fill Rule is \tcode{fr}. |
| 94 | +The fill rule is \tcode{fr}. |
101 | 95 | \end{itemdescr} |
102 | 96 |
|
103 | | -\indexlibrary{\idxcode{brush_props}!\idxcode{brush_matrix}} |
| 97 | +\indexlibrarymember{brush_props}{brush_matrix}% |
104 | 98 | \begin{itemdecl} |
105 | 99 | constexpr void brush_matrix(const matrix_2d& m) noexcept; |
106 | 100 | \end{itemdecl} |
|
111 | 105 |
|
112 | 106 | \pnum |
113 | 107 | \effects |
114 | | -The value of Brush Matrix is \tcode{m}. |
| 108 | +The brush matrix is \tcode{m}. |
115 | 109 | \end{itemdescr} |
116 | 110 |
|
117 | 111 | \rSec1 [\iotwod.brushprops.observers] {\tcode{brush_props} observers} |
118 | 112 |
|
119 | | -\indexlibrary{\idxcode{brush_props}!\idxcode{wrap_mode}} |
| 113 | +\indexlibrarymember{brush_props}{wrap_mode}% |
120 | 114 | \begin{itemdecl} |
121 | 115 | constexpr experimental::io2d::wrap_mode wrap_mode() const noexcept; |
122 | 116 | \end{itemdecl} |
123 | 117 | \begin{itemdescr} |
124 | 118 | \pnum |
125 | 119 | \returns |
126 | | -The value of Wrap Mode. |
| 120 | +The wrap mode. |
127 | 121 | \end{itemdescr} |
128 | 122 |
|
129 | | -\indexlibrary{\idxcode{brush_props}!\idxcode{filter}} |
| 123 | +\indexlibrarymember{brush_props}{filter}% |
130 | 124 | \begin{itemdecl} |
131 | 125 | constexpr experimental::io2d::filter filter() const noexcept; |
132 | 126 | \end{itemdecl} |
133 | 127 | \begin{itemdescr} |
134 | 128 | \pnum |
135 | 129 | \returns |
136 | | -The value of Filter. |
| 130 | +The filter. |
137 | 131 | \end{itemdescr} |
138 | 132 |
|
139 | | -\indexlibrary{\idxcode{brush_props}!\idxcode{fill_rule}} |
| 133 | +\indexlibrarymember{brush_props}{fill_rule}% |
140 | 134 | \begin{itemdecl} |
141 | 135 | constexpr experimental::io2d::fill_rule fill_rule() const noexcept; |
142 | 136 | \end{itemdecl} |
143 | 137 | \begin{itemdescr} |
144 | 138 | \pnum |
145 | 139 | \returns |
146 | | -The value of Fill Rule. |
| 140 | +The fill rule. |
147 | 141 | \end{itemdescr} |
148 | 142 |
|
149 | | -\indexlibrary{\idxcode{brush_props}!\idxcode{brush_matrix}} |
| 143 | +\indexlibrarymember{brush_props}{brush_matrix}% |
150 | 144 | \begin{itemdecl} |
151 | 145 | constexpr matrix_2d brush_matrix() const noexcept; |
152 | 146 | \end{itemdecl} |
153 | 147 | \begin{itemdescr} |
154 | 148 | \pnum |
155 | 149 | \returns |
156 | | -The value of Brush Matrix. |
| 150 | +The brush matrix. |
157 | 151 | \end{itemdescr} |
0 commit comments