You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The word description in sdf::Element::PrintDescription or sdf::Element::AddElementDescription has a different meaning than in sdf::Element::GetDescription. The former refers to an XML document that describes what the valid elements are in the given sdf::Element object. Another name for this could be "schema". The latter refers to the string in the <description> tag of the schema.
For example: the description as in the schema for the <inertial> tag is
Whether or not the euler angles are in degrees, otherwise they will be interpreted as radians by default.
</description>
</attribute>
</element> <!-- End Pose -->
But the description as in string in <description>
A pose (translation, rotation) expressed in the frame named by
@relative_to. The first three components (x, y, z) represent the position of
the element's origin (in the @relative_to frame). The rotation component
represents the orientation of the element as either a sequence of Euler
rotations (r, p, y), see http://sdformat.org/tutorials?tut=specify_pose,
or as a quaternion (x, y, z, w), where w is the real component.
I propose we change our naming for the first case to "schema".
The text was updated successfully, but these errors were encountered:
The word
description
insdf::Element::PrintDescription
orsdf::Element::AddElementDescription
has a different meaning than insdf::Element::GetDescription
. The former refers to an XML document that describes what the valid elements are in the givensdf::Element
object. Another name for this could be "schema". The latter refers to the string in the<description>
tag of the schema.For example: the description as in the schema for the
<inertial>
tag issdformat/sdf/1.10/pose.sdf
Lines 1 to 43 in da1f325
But the description as in string in
<description>
I propose we change our naming for the first case to "schema".
The text was updated successfully, but these errors were encountered: