UNPKG

@jscad/modeling

Version:

Constructive Solid Geometry (CSG) Library for JSCAD

13 lines (10 loc) 243 B
import Vec2 from '../../maths/vec2/type' import Mat4 from '../../maths/mat4/type' import { Color } from '../types' export default Path2 declare interface Path2 { points: Array<Vec2> isClosed: boolean transforms: Mat4 color?: Color }