diff --git a/markdown/dev/reference/api/hooks/postsample/en.md b/markdown/dev/reference/api/hooks/postsample/en.md index 1aa13dad7df..f044640059e 100644 --- a/markdown/dev/reference/api/hooks/postsample/en.md +++ b/markdown/dev/reference/api/hooks/postsample/en.md @@ -7,9 +7,9 @@ Your plugin will receive the Pattern object. It is triggered just before the end of either: -- the [Pattern.sampleOption()](/reference/api/pattern/#sampleoption) method -- the [Pattern.sampleMeasurement()](/reference/api/pattern/#samplemeasurement) method -- the [Pattern.sampleModels()](/reference/api/pattern/#samplemodels) method +- the [Pattern.sampleOption()](/reference/api/pattern/sampleoption) method +- the [Pattern.sampleMeasurement()](/reference/api/pattern/samplemeasurement) method +- the [Pattern.sampleModels()](/reference/api/pattern/samplemodels) method diff --git a/markdown/dev/reference/api/snippet/en.md b/markdown/dev/reference/api/snippet/en.md index 8f4fed9689c..1a3d9194a89 100644 --- a/markdown/dev/reference/api/snippet/en.md +++ b/markdown/dev/reference/api/snippet/en.md @@ -9,7 +9,7 @@ SVG `defs` section, and rendered with the SVG `use` tag. The snippet constructor takes two arguments: - `def` : The `xlink:href` id that links to the relevant entry in the SVG `defs` section -- `anchor` : A [`Point`](./point) on which to anchor the snippet +- `anchor` : A [`Point`](/reference/api/point) on which to anchor the snippet ```js Snippet new Snippet(def, Point); @@ -18,8 +18,8 @@ Snippet new Snippet(def, Point); A Snippet object comes with the following properties: - `def` : The `xlink:href` id that links to the relevant entry in the SVG `defs` section -- `anchor` : A [`Point`](./point) on which to anchor the snippet -- `attributes` : An [`Attributes`](./attributes) instance holding the snippet's attributes +- `anchor` : A [`Point`](/reference/api/point) on which to anchor the snippet +- `attributes` : An [`Attributes`](/reference/api/attributes) instance holding the snippet's attributes In addition, a Snippet object exposes the following methods: diff --git a/markdown/dev/reference/api/utils/beamintersectsx/en.md b/markdown/dev/reference/api/utils/beamintersectsx/en.md index 74984909dcb..83975c6d11f 100644 --- a/markdown/dev/reference/api/utils/beamintersectsx/en.md +++ b/markdown/dev/reference/api/utils/beamintersectsx/en.md @@ -6,7 +6,7 @@ title: beamIntersectsX() Point | false utils.beamIntersectsX(Point A, Point B, float X) ``` -Finds the intersection between an endless line and a given X-value. Returns a [Point](#point) object +Finds the intersection between an endless line and a given X-value. Returns a [Point](/reference/api/point) object for the intersection, or `false` there is no intersection. diff --git a/markdown/dev/reference/api/utils/beamintersectsy/en.md b/markdown/dev/reference/api/utils/beamintersectsy/en.md index f043898d58f..492a583ef38 100644 --- a/markdown/dev/reference/api/utils/beamintersectsy/en.md +++ b/markdown/dev/reference/api/utils/beamintersectsy/en.md @@ -6,7 +6,7 @@ title: beamIntersectsY() Point | false utils.beamIntersectsY(Point A, Point B, float Y) ``` -Finds the intersection between an endless line and a given Y-value. Returns a [Point](#point) object +Finds the intersection between an endless line and a given Y-value. Returns a [Point](/reference/api/point) object for the intersection, or `false` there is no intersection. diff --git a/markdown/dev/reference/api/utils/beamsintersect/en.md b/markdown/dev/reference/api/utils/beamsintersect/en.md index 5d6d38b2c1c..14613cb09c1 100644 --- a/markdown/dev/reference/api/utils/beamsintersect/en.md +++ b/markdown/dev/reference/api/utils/beamsintersect/en.md @@ -11,7 +11,7 @@ Point | false utils.beamsIntersect( ) ``` -Finds the intersection between two endless lines (beams). Returns a [Point](../point) object +Finds the intersection between two endless lines (beams). Returns a [Point](/reference/api/point) object for the intersection, or `false` if the lines don't intersect. diff --git a/markdown/dev/reference/api/utils/curveintersectsx/en.md b/markdown/dev/reference/api/utils/curveintersectsx/en.md index 27a23680333..13606058c27 100644 --- a/markdown/dev/reference/api/utils/curveintersectsx/en.md +++ b/markdown/dev/reference/api/utils/curveintersectsx/en.md @@ -14,7 +14,7 @@ array | Point | false utils.curveIntersectsX( Finds the point(s) where a curve intersects a given X-value. This is a low-level variant -of [`Path.intersectsX()`](/reference/api/path#intersectsx). +of [`Path.intersectsX()`](/reference/api/path/intersectsx). Instead of a path, you describe a single curve by passing the four points that describes it. diff --git a/markdown/dev/reference/api/utils/curveintersectsy/en.md b/markdown/dev/reference/api/utils/curveintersectsy/en.md index 3fe4a7f4806..514aca92b0d 100644 --- a/markdown/dev/reference/api/utils/curveintersectsy/en.md +++ b/markdown/dev/reference/api/utils/curveintersectsy/en.md @@ -14,7 +14,7 @@ array | Point | false utils.curveIntersectsY( Finds the point(s) where a curve intersects a given Y-value. This is a low-level variant -of [`Path.intersectsY()`](/reference/api/path#intersectsy). +of [`Path.intersectsY()`](/reference/api/path/intersectsy). Instead of a path, you describe a single curve by passing the four points that describes it.