react-native-filament
Version:
A real-time physically based 3D rendering engine for React Native
14 lines • 339 B
TypeScript
import { Float3 } from '../../types';
export interface BaseShape {
localScaling: Float3;
margin: number;
}
export interface Box extends BaseShape {
}
export interface Cylinder extends BaseShape {
}
export interface StaticPlane extends BaseShape {
}
export interface Sphere extends BaseShape {
}
//# sourceMappingURL=Shapes.d.ts.map