This commit is contained in:
yinsx
2025-11-03 11:12:18 +08:00
commit bea36ee0aa
124 changed files with 14774 additions and 0 deletions

View File

@ -0,0 +1,20 @@
import { Point } from './Point'
export class Point_Pool {
points
constructor() {
this.points = new Array()
}
Add_point(point_Class: Point) {
this.points.push(point_Class)
}
Enable_All(visible: boolean) {
for (let i = 0, item; (item = this.points[i++]); ) {
if (item.plane) {
item.plane.isVisible = visible
}
}
}
}