Fix doc errors.

This commit is contained in:
Kevin Ring 2025-03-16 12:22:12 +11:00
parent 4ae059615c
commit 6894914577
3 changed files with 7 additions and 7 deletions

View File

@ -34,7 +34,7 @@ public:
*
* The state is obtained from the view group's
* {@link TilesetViewGroup::getTraversalState} by calling
* {@link TreeTraversalState::slowlyGetPreviousStates}.
* {@link CesiumUtility::TreeTraversalState::slowlyGetPreviousStates}.
*
* @param frameNumber The current frame number.
* @param tileset The tileset.
@ -50,7 +50,7 @@ public:
*
* The state is obtained from the view group's
* {@link TilesetViewGroup::getTraversalState} by calling
* {@link TreeTraversalState::slowlyGetPreviousStates}.
* {@link CesiumUtility::TreeTraversalState::slowlyGetPreviousStates}.
*
* @param frameNumber The current frame number.
* @param viewGroup The view group.

View File

@ -25,8 +25,8 @@ class CESIUM3DTILESSELECTION_API TilesetViewGroup final
: public TileLoadRequester {
public:
/**
* @brief The type of the {@link TreeTraversalState} used to track tile
* selection states for this view group.
* @brief The type of the {@link CesiumUtility::TreeTraversalState}
* used to track tile selection states for this view group.
*/
using TraversalState = CesiumUtility::TreeTraversalState<
CesiumUtility::IntrusivePointer<const Tile>,

View File

@ -151,9 +151,9 @@ public:
* {@link finishNode}.
*
* After `finishNode`, this node's parent node becomes the "current" node.
* {@link previousState} and {@link nextState} will return
* previous the states of this node's parent. A call to {@link beginNode}
* will delineate a new child of that same parent.
* {@link previousState} and {@link currentState} will return
* the states of this node's parent. A call to {@link beginNode} will
* delineate a new child of that same parent.
*
* @param pNode The node that is done being traversed.
*/