mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-14 12:23:03 +01:00
9 lines
No EOL
104 B
JavaScript
9 lines
No EOL
104 B
JavaScript
import {Curve} from '../curve'
|
|
|
|
export class Line extends Curve {
|
|
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
} |