UNPKG

@wandelbots/wandelbots-js-react-components

Version:

React UI toolkit for building applications on top of the Wandelbots platform

12 lines 595 B
import type { DHParameter, MotionGroupState } from "@wandelbots/nova-js/v2"; import React from "react"; import type { Object3D } from "three"; type RobotAnimatorProps = { rapidlyChangingMotionState: MotionGroupState; dhParameters: DHParameter[]; onRotationChanged?: (joints: Object3D[], jointValues: number[]) => void; children: React.ReactNode; }; export default function RobotAnimator({ rapidlyChangingMotionState, dhParameters, onRotationChanged, children, }: RobotAnimatorProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=RobotAnimator.d.ts.map