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.
 
 
 
 

8 lines
263 B

import type { PathArray } from '../types';
/**
* Returns the area of a shape.
* @author Jürg Lehni & Jonathan Puckey
*
* @see https://github.com/paperjs/paper.js/blob/develop/src/path/Path.js
*/
export declare function getPathArea(path: PathArray): number;