UNPKG

@jscad/modeling

Version:

Constructive Solid Geometry (CSG) Library for JSCAD

16 lines (12 loc) 330 B
import Path2 from './type' import Vec2 from '../../maths/vec2/type' export default appendArc export interface AppendArcOptions { endpoint: Vec2 radius?: Vec2 xaxisrotation?: number clockwise?: boolean large?: boolean segments?: number } declare function appendArc(options: AppendArcOptions, geometry: Path2): Path2