| 48 | } |
| 49 | |
| 50 | export interface IModelExample { |
| 51 | name: string; |
| 52 | shape: IModelShape; |
| 53 | enabled: boolean; |
| 54 | layout?: IGptModelLayout; |
| 55 | blockRender: IBlockRender; |
| 56 | offset: Vec3; |
| 57 | modelCardOffset: Vec3; |
| 58 | camera?: ICameraPos; |
| 59 | } |
| 60 | |
| 61 | export interface IMouseState { |
| 62 | mousePos: Vec3; |
nothing calls this directly
no outgoing calls
no test coverage detected