mirror of
https://github.com/nasa/openmct.git
synced 2025-06-20 08:03:49 +00:00
[JSDoc] Add annotations
Bulk-add JSDoc annotations, WTD-1482.
This commit is contained in:
@ -29,6 +29,7 @@ define(
|
||||
/**
|
||||
* Handles plotting in Overlaid mode. In overlaid mode, there
|
||||
* is one sub-plot which contains all plotted objects.
|
||||
* @memberof platform/features/plot
|
||||
* @constructor
|
||||
* @param {DomainObject[]} the domain objects to be plotted
|
||||
*/
|
||||
@ -68,12 +69,14 @@ define(
|
||||
/**
|
||||
* Plot telemetry to the sub-plot(s) managed by this mode.
|
||||
* @param {PlotPreparer} prepared the prepared data to plot
|
||||
* @memberof platform/features/plot.PlotOverlayMode#
|
||||
*/
|
||||
plotTelemetry: plotTelemetry,
|
||||
/**
|
||||
* Get all sub-plots to be displayed in this mode; used
|
||||
* to populate the plot template.
|
||||
* @return {SubPlot[]} all sub-plots to display in this mode
|
||||
* @memberof platform/features/plot.PlotOverlayMode#
|
||||
*/
|
||||
getSubPlots: function () {
|
||||
return subplots;
|
||||
@ -83,6 +86,7 @@ define(
|
||||
* there are some temporary user modifications to the
|
||||
* current pan-zoom state.)
|
||||
* @returns {boolean} true if not in the base pan-zoom state
|
||||
* @memberof platform/features/plot.PlotOverlayMode#
|
||||
*/
|
||||
isZoomed: function () {
|
||||
return panZoomStack.getDepth() > 1;
|
||||
@ -90,6 +94,7 @@ define(
|
||||
/**
|
||||
* Undo the most recent pan/zoom change and restore
|
||||
* the prior state.
|
||||
* @memberof platform/features/plot.PlotOverlayMode#
|
||||
*/
|
||||
stepBackPanZoom: function () {
|
||||
panZoomStack.popPanZoom();
|
||||
@ -104,4 +109,4 @@ define(
|
||||
|
||||
return PlotOverlayMode;
|
||||
}
|
||||
);
|
||||
);
|
||||
|
Reference in New Issue
Block a user