Skip to content

Commit 209e64e

Browse files
tusharpm9prady9
authored andcommitted
address review comments
1 parent d022f31 commit 209e64e

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

include/fg/histogram.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ FGAPI fg_err fg_release_histogram(fg_histogram pHistogram);
5858
This is global alpha value for the histogram rendering that takes
5959
effect if individual bar alphas are not set by calling the following
6060
member functions
61-
- Histogram::alphas()
62-
- Histogram::alphasSize()
61+
- fg_get_histogram_alpha_buffer
62+
- fg_get_histogram_alpha_buffer_size
6363
6464
\param[in] pHistogram is the histogram handle
6565
\param[in] pRed is Red component in range [0, 1]

include/fg/pie.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ FGAPI fg_err fg_retain_pie(fg_pie *pOut, fg_pie pIn);
5252
FGAPI fg_err fg_release_pie(fg_pie pPie);
5353

5454
/**
55-
Set the color of bar in the bar graph(pie)
55+
Set the color of all sectors in the pie chart
5656
5757
This is global alpha value for the pie rendering that takes
58-
effect if individual bar alphas are not set by calling the following
59-
member functions
60-
- Pie::alphas()
61-
- Pie::alphasSize()
58+
effect if individual sector alphas are not set in the buffer
59+
obtained by the following functions
60+
- fg_get_pie_alpha_buffer
61+
- fg_get_pie_alpha_buffer_size
6262
6363
\param[in] pPie is the pie handle
6464
\param[in] pRed is Red component in range [0, 1]
@@ -189,17 +189,17 @@ class Pie {
189189
FGAPI ~Pie();
190190

191191
/**
192-
Set the color of bar in the bar graph(pie)
192+
Set the color of all sectors in the pie chart
193193
194-
\param[in] pColor takes values of type forge::Color to define bar color
195-
**/
194+
\param[in] pColor takes values of type forge::Color to define sector color
195+
*/
196196
FGAPI void setColor(const Color pColor);
197197

198198
/**
199-
Set the color of bar in the bar graph(pie)
199+
Set the color of all sectors in the pie chart
200200
201201
This is global alpha value for the pie rendering that takes
202-
effect if individual bar alphas are not set by calling the following
202+
effect if individual sector alphas are not set by calling the following
203203
member functions
204204
- Pie::alphas()
205205
- Pie::alphasSize()

0 commit comments

Comments
 (0)