Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharpm authored and 9prady9 committed Dec 24, 2019
1 parent d022f31 commit 209e64e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions include/fg/histogram.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ FGAPI fg_err fg_release_histogram(fg_histogram pHistogram);
This is global alpha value for the histogram rendering that takes
effect if individual bar alphas are not set by calling the following
member functions
- Histogram::alphas()
- Histogram::alphasSize()
- fg_get_histogram_alpha_buffer
- fg_get_histogram_alpha_buffer_size
\param[in] pHistogram is the histogram handle
\param[in] pRed is Red component in range [0, 1]
Expand Down
20 changes: 10 additions & 10 deletions include/fg/pie.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ FGAPI fg_err fg_retain_pie(fg_pie *pOut, fg_pie pIn);
FGAPI fg_err fg_release_pie(fg_pie pPie);

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

/**
Set the color of bar in the bar graph(pie)
Set the color of all sectors in the pie chart
\param[in] pColor takes values of type forge::Color to define bar color
**/
\param[in] pColor takes values of type forge::Color to define sector color
*/
FGAPI void setColor(const Color pColor);

/**
Set the color of bar in the bar graph(pie)
Set the color of all sectors in the pie chart
This is global alpha value for the pie rendering that takes
effect if individual bar alphas are not set by calling the following
effect if individual sector alphas are not set by calling the following
member functions
- Pie::alphas()
- Pie::alphasSize()
Expand Down

0 comments on commit 209e64e

Please sign in to comment.