@@ -2203,7 +2203,7 @@ You can call this API from either of _two different edit contexts_:
2203
2203
** Kind** : class
2204
2204
** Extends** : [ <code >SceneNode</code >] ( #SceneNode )
2205
2205
2206
- ScrollableGroup nodes are content that users can interactively scroll around. Content is viewed through a { @ link viewport} ,
2206
+ ScrollableGroup nodes are content that users can interactively scroll around. Content is viewed through a [ viewport] ( #ScrollableGroup-viewport ) ,
2207
2207
with everything else clipped. If a ScrollableGroup is set to only scroll on one axis, on the other axis the viewport is
2208
2208
automatically sized to exactly fit the bounds of the content so nothing is clipped.
2209
2209
@@ -2232,14 +2232,14 @@ The type of scrolling: one of ScrollableGroup.VERTICAL, HORIZONTAL and PANNING.
2232
2232
### ScrollableGroup.viewport : <code >!{viewportWidth: number, offsetX: number} | {viewportHeight: number, offsetY: number} | {viewportWidth: number, offsetX: number, viewportHeight: number, offsetY: number}}</code >
2233
2233
The viewport is a rectangle whose bounds are defined explicitly on scrolling axes and fit automatically to the
2234
2234
content on non-scrolling axes:
2235
- * On a scrolling axis, the bounds are specified in { @ link core/coordinate-spaces-and-units.md local coordinates}
2235
+ * On a scrolling axis, the bounds are specified in [ local coordinates ] ( /reference/ core/coordinate-spaces-and-units.md)
2236
2236
using the ` viewport ` values specified here.
2237
2237
* On a non-scrolling axis, the bounds are automatically calculated to exactly fit the content (just like the blue
2238
2238
selection rectangle seen when you select a plain Group).
2239
2239
2240
2240
For example, if scrollingType == VERTICAL, the top of the viewport is ` viewport.offsetY ` in the ScrollableGroup's
2241
2241
local coordinates, the bottom of the viewport is ` viewport.offsetY + viewport.viewportHeight ` in local coordinates,
2242
- and horizontally there is no viewport clipping -- the entire current { @ link localBounds} range is visible. The
2242
+ and horizontally there is no viewport clipping -- the entire current [ localBounds] ( #SceneNode-localBounds ) range is visible. The
2243
2243
` viewport ` object will only contain ` offsetY ` and ` viewportHeight ` properties in this case.
2244
2244
2245
2245
** Kind** : instance property of [ <code >ScrollableGroup</code >] ( #ScrollableGroup )
0 commit comments