Ignore:
Timestamp:
Jul 23, 2011 10:44:39 AM (13 years ago)
Author:
ldelgass
Message:

Add/fixup class documentation

Location:
trunk/packages/vizservers/vtkvis
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/vtkvis/RpContour3D.cpp

    r2317 r2319  
    250250
    251251/**
    252  * \brief Specify number of evenly spaced contour lines to render
     252 * \brief Specify number of evenly spaced isosurfaces to render
    253253 *
    254254 * Will override any existing contours
     
    270270
    271271/**
    272  * \brief Specify number of evenly spaced contour lines to render
     272 * \brief Specify number of evenly spaced isosurfaces to render
    273273 * between the given range (including range endpoints)
    274274 *
  • trunk/packages/vizservers/vtkvis/RpGlyphs.cpp

    r2317 r2319  
    226226}
    227227
     228/**
     229 * \brief Controls relative scaling of glyphs
     230 */
    228231void Glyphs::setScaleFactor(double scale)
    229232{
  • trunk/packages/vizservers/vtkvis/RpGlyphs.h

    r2269 r2319  
    2525
    2626/**
    27  * \brief 3D Glyphs
     27 * \brief Oriented and scaled 3D glyph shapes
    2828 */
    2929class Glyphs {
     
    5757
    5858    vtkLookupTable *getLookupTable();
    59 
    60     ColorMap *getColorMap();
    6159
    6260    void setOpacity(double opacity);
  • trunk/packages/vizservers/vtkvis/RpHeightMap.cpp

    r2317 r2319  
    440440}
    441441
     442/**
     443 * \brief Controls relative scaling of height of mountain plot
     444 */
    442445void HeightMap::setHeightScale(double scale)
    443446{
     
    465468}
    466469
     470/**
     471 * \brief Select a 2D slice plane from a 3D DataSet
     472 *
     473 * \param[in] axis Axis of slice plane
     474 * \param[in] ratio Position [0,1] of slice plane along axis
     475 */
    467476void HeightMap::selectVolumeSlice(Axis axis, double ratio)
    468477{
     
    719728
    720729/**
    721  * \brief Turn on/off rendering of this colormapped dataset
     730 * \brief Turn on/off rendering of this HeightMap
    722731 */
    723732void HeightMap::setVisibility(bool state)
     
    732741
    733742/**
    734  * \brief Get visibility state of the colormapped dataset
     743 * \brief Get visibility state of the HeightMap
    735744 *
    736745 * \return Is HeightMap visible?
     
    749758
    750759/**
    751  * \brief Set opacity used to render the colormapped dataset
     760 * \brief Set opacity used to render the HeightMap
    752761 */
    753762void HeightMap::setOpacity(double opacity)
  • trunk/packages/vizservers/vtkvis/RpStreamlines.cpp

    r2318 r2319  
    4848
    4949/**
    50  * \brief Get the VTK Prop for the Glyphs
     50 * \brief Get the VTK Prop for the Streamlines
    5151 */
    5252vtkProp *Streamlines::getProp()
     
    333333 * \brief Use seed points along a line
    334334 *
    335  * \param[in] numPoints Number of random seed points to generate
     335 * \param[in] start Starting point of rake line
     336 * \param[in] end End point of rake line
     337 * \param[in] numPoints Number of points along line to generate
    336338 */
    337339void Streamlines::setSeedToRake(double start[3], double end[3], int numPoints)
     
    384386 * \brief Use seed points from an n-sided polygon
    385387 *
    386  * \param[in] numPoints Number of random seed points to generate
     388 * \param[in] center Center point of polygon
     389 * \param[in] normal Normal vector to orient polygon
     390 * \param[in] radius Radius of circumscribing circle
     391 * \param[in] numSides Number of polygon sides (and points) to generate
    387392 */
    388393void Streamlines::setSeedToPolygon(double center[3],
Note: See TracChangeset for help on using the changeset viewer.