Struct gltf::scene::Node [] [src]

pub struct Node<'a> { /* fields omitted */ }

A node in the node hierarchy. When the node contains skin, all mesh.primitives must contain JOINTS_0 and WEIGHTS_0 attributes. A node can have either a matrix or any combination of translation/rotation/scale (TRS) properties. TRS properties are converted to matrices and postmultiplied in the T * R * S order to compose the transformation matrix; first the scale is applied to the vertices, then the rotation, and then the translation. If none are provided, the transform is the identity. When a node is targeted for animation (referenced by an animation.channel.target), only TRS properties may be present; matrix will not be present.

Methods

impl<'a> Node<'a>
[src]

Constructs a Node.

Returns the internal JSON index.

Returns the internal JSON item.

The camera referenced by this node.

Returns an Iterator that visits the node's children.

Extension specific data.

Optional application specific data.

4x4 column-major transformation matrix.

The mesh in this node.

The node's unit quaternion rotation in the order (x, y, z, w), where w is the scalar.

The node's non-uniform scale.

The node's translation.

The skin referenced by this node.

The weights of the instantiated Morph Target. Number of elements must match number of Morph Targets of used mesh.

Trait Implementations

impl<'a> Clone for Node<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Debug for Node<'a>
[src]

Formats the value using the given formatter.