-
-
Notifications
You must be signed in to change notification settings - Fork 416
Expand file tree
/
Copy pathindex.d.ts
More file actions
executable file
·60 lines (51 loc) · 1.14 KB
/
Copy pathindex.d.ts
File metadata and controls
executable file
·60 lines (51 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import vtkActor, { IActorInitialValues } from '../Actor';
export interface ISkyboxInitialValues extends IActorInitialValues {
format?: string;
}
export interface vtkSkybox extends vtkActor {
/**
*
*/
getFromat(): string;
/**
*
*/
getIsOpaque(): boolean;
/**
*
*/
getSupportsSelection(): boolean;
/**
*
*/
hasTranslucentPolygonalGeometry(): boolean;
/**
*
* @param format
*/
setFromat(format: string): boolean;
}
/**
* Method use to decorate a given object (publicAPI+model) with vtkSkybox characteristics.
*
* @param publicAPI object on which methods will be bounds (public)
* @param model object on which data structure will be bounds (protected)
* @param {ISkyboxInitialValues} [initialValues] (default: {})
*/
export function extend(
publicAPI: object,
model: object,
initialValues?: ISkyboxInitialValues
): void;
/**
* Method use to create a new instance of vtkSkybox
*/
export function newInstance(initialValues?: ISkyboxInitialValues): vtkSkybox;
/**
*
*/
export declare const vtkSkybox: {
newInstance: typeof newInstance;
extend: typeof extend;
};
export default vtkSkybox;