UNPKG

react-native-filament

Version:

A real-time physically based 3D rendering engine for React Native

14 lines 359 B
import { Float3 } from '../../types'; export interface BaseShape { localScaling: Float3; margin: number; } export interface BoxShape extends BaseShape { } export interface CylinderShape extends BaseShape { } export interface StaticPlaneShape extends BaseShape { } export interface SphereShape extends BaseShape { } //# sourceMappingURL=Shapes.d.ts.map