1
0
Fork 0
freesewing/markdown/dev/reference/api/point/shiftfractiontowards/en.md

52 lines
1.3 KiB
Markdown
Raw Normal View History

---
2021-11-06 18:20:45 +01:00
title: Point.shiftFractionTowards()
---
2021-11-06 18:20:45 +01:00
Returns a new `Point` that is shifted towards the `target` by a `fraction` of the distance between this
point and the target.
This method accepts values larger than 1 to go beyond the target point, or negative values to shift the
point in the opposite direction.
If you need to move a point by a specific distance instead of a percentage, use [`Point.shiftTowards()`]((reference/api/point/shifttowards/)) or [`Point.shiftOutwards()`](reference/api/point/shiftoutwards/) instead.
```js
Point point.shiftFractionTowards(Point target, float fraction)
```
2021-11-06 18:20:45 +01:00
<Example
part="point_shiftfractiontowards"
caption="An example of the Point.shiftFractionTowards() method"
/>
```js
let { Point, points, Path, paths, macro } = part.shorthand();
points.A = new Point(90, 70).attr("data-text", "Point A");
points.B = new Point(10, 10).attr("data-text", "Point B");
points.C = points.A.shiftFractionTowards(points.B, 0.5)
.attr(
"data-text",
"Point C is point A shifted 50%\nin the direction of point B"
)
.attr("data-text-class", "center")
.attr("data-text-lineheight", 6);
paths.direction = new Path()
.move(points.A)
.line(points.B)
.attr("class", "note dashed");
macro("ld", {
from: points.C,
to: points.A,
d: -10
});
macro("ld", {
from: points.B,
to: points.A,
d: 20
});
```