UNPKG

roslib

Version:

The standard ROS Javascript Library

12 lines (11 loc) 345 B
import { default as Vector3 } from '../math/Vector3.ts'; import { UrdfType, UrdfDefaultOptions } from './UrdfTypes.ts'; import { Nullable } from '../types/interface-types.ts'; /** * A Box element in a URDF. */ export default class UrdfBox { type: UrdfType; dimension: Nullable<Vector3>; constructor({ xml }: UrdfDefaultOptions); }