UNPKG

react-native-filament

Version:

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

6 lines 333 B
import { useMemo } from 'react'; import { BulletAPI } from '../bulletApi'; export function useStaticPlaneShape(normalX, normalY, normalZ, constant) { return useMemo(() => BulletAPI.createStaticPlaneShape(normalX, normalY, normalZ, constant), [normalX, normalY, normalZ, constant]); } //# sourceMappingURL=useStaticPlaneShape.js.map