PaintViveController.d.ts 229 字节
Newer Older
1
import {
G
Garrett Johnson 已提交
2
	Color
3 4 5 6 7 8
} from '../../../src/Three';

import { ViveController } from './ViveController';

export class PaintViveController extends ViveController {

G
Garrett Johnson 已提交
9 10 11 12 13
	constructor( id: number );

	getColor(): Color;
	getSize(): number;

14
}