xtorcga
Version:
Xtor Compute Geometry Algorithm Libary 计算几何算法库
14 lines (11 loc) • 370 B
text/typescript
/*
* @Description :
* @Author : 赵耀圣
* @QQ : 549184003
* @Date : 2021-03-15 09:40:01
* @LastEditTime : 2021-03-15 09:42:14
* @FilePath : \cga.js\src\shape\arc.ts
*/
import { Vec3 } from "../math/Vec3";
export function Circle(center: Vec3, radius: number, segment: number, startAngle: number, lenAngle: number) {
}