interface ILinerender {
    addLine(start: Vector3, end: Vector3, c1: Color, c2: Color): void;
    clear(): void;
    destroy(): void;
}

方法