mirror of
https://github.com/xibyte/jsketcher
synced 2026-02-16 12:24:22 +01:00
9 lines
No EOL
151 B
JavaScript
9 lines
No EOL
151 B
JavaScript
import {TopoObject} from './topo-object'
|
|
|
|
export class Vertex extends TopoObject {
|
|
|
|
constructor(point) {
|
|
super();
|
|
this.point = point;
|
|
}
|
|
} |