roslib
Version:
The standard ROS Javascript Library
15 lines (14 loc) • 453 B
TypeScript
import { default as UrdfColor } from './UrdfColor.ts';
import { UrdfDefaultOptions } from './UrdfTypes.ts';
import { Nullable } from '../types/interface-types.ts';
/**
* A Material element in a URDF.
*/
export default class UrdfMaterial {
name: string;
textureFilename: Nullable<string>;
color: Nullable<UrdfColor>;
constructor({ xml }: UrdfDefaultOptions);
isLink(): boolean;
assign(obj: UrdfMaterial): this & UrdfMaterial;
}