You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
406 B
9 lines
406 B
import { __assign } from "tslib";
|
|
import { pathLengthFactory } from './path-length-factory';
|
|
/**
|
|
* Returns [x,y] coordinates of a point at a given length of a shape.
|
|
*/
|
|
export function getPointAtLength(pathInput, distance, options) {
|
|
return pathLengthFactory(pathInput, distance, __assign(__assign({}, options), { bbox: false, length: true })).point;
|
|
}
|
|
//# sourceMappingURL=get-point-at-length.js.map
|