UNPKG

react-native-filament

Version:

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

8 lines (7 loc) 348 B
"use strict"; 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