MCPcopy Create free account
hub / github.com/google-deepmind/dm_control / full_identifier

Method full_identifier

dm_control/mjcf/element.py:362–368  ·  view source on GitHub ↗

Fully-qualified identifier used for this element in the generated XML.

(self)

Source from the content-addressed store, hash-verified

360
361 @property
362 def full_identifier(self):
363 """Fully-qualified identifier used for this element in the generated XML."""
364 if self.namescope.revision > self._cached_revision:
365 self._cached_full_identifier = self.prefixed_identifier(
366 prefix_root=self.namescope.root)
367 self._cached_revision = self.namescope.revision
368 return self._cached_full_identifier
369
370 @property
371 def _default_identifier(self):

Callers

nothing calls this directly

Calls 1

prefixed_identifierMethod · 0.95

Tested by

no test coverage detected