mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-12 03:13:24 +01:00
12 lines
No EOL
211 B
TypeScript
12 lines
No EOL
211 B
TypeScript
import {TopoObject} from './topo-object'
|
|
import Vector from "math/vector";
|
|
|
|
export class Vertex extends TopoObject {
|
|
|
|
point: Vector;
|
|
|
|
constructor(point: Vector) {
|
|
super();
|
|
this.point = point;
|
|
}
|
|
} |