NodeVertexTransform

from panda3d.core import NodeVertexTransform
class NodeVertexTransform

Bases:

Bases: VertexTransform

This VertexTransform gets its matrix from the Transform stored on a node. It can also compose its node’s transform with another VertexTransform, allowing you to build up a chain of NodeVertexTransforms that represent a list of composed matrices.

Inheritance diagram

Inheritance diagram of NodeVertexTransform

__init__(node: PandaNode, prev: VertexTransform)
static getClassType() TypeHandle
getNode() PandaNode

Returns the PandaNode whose transform supplies this object.

getPrev() VertexTransform

Returns the VertexTransform object whose matrix will be composed with the result of this node’s transform.

property node PandaNode

Returns the PandaNode whose transform supplies this object.

property prev VertexTransform

Returns the VertexTransform object whose matrix will be composed with the result of this node’s transform.