Newer
Older
HuangJiPC / public / static / three / examples / jsm / lines / LineGeometry.d.ts
@zhangdeliang zhangdeliang on 21 Jun 244 bytes update
import {
	Line
} from '../../../src/Three';

import { LineSegmentsGeometry } from './LineSegmentsGeometry';

export class LineGeometry extends LineSegmentsGeometry {

	constructor();
	isLineGeometry: boolean;

	fromLine( line: Line ): this;

}