11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
|
|
import { Line } from 'three'
|
||
|
|
|
||
|
|
import { LineSegmentsGeometry } from './LineSegmentsGeometry'
|
||
|
|
|
||
|
|
export class LineGeometry extends LineSegmentsGeometry {
|
||
|
|
constructor()
|
||
|
|
readonly isLineGeometry: true
|
||
|
|
|
||
|
|
fromLine(line: Line): this
|
||
|
|
}
|