UNPKG

react-native-filament

Version:

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

15 lines (9 loc) 317 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 {}