instantreality 1.0

Component:
EventUtilities
Status:
fully implemented
Structure type:
concrete
Standard:
Avalon

MatrixComposer

Combines individual transformations into a 4*4 Matrix.

Inheritance

Code

XML encoding
<MatrixComposer center='0 0 0'
rotation='0 0 1 0'
scale='1 1 1'
scaleOrientation='0 0 1 0'
translation='0 0 0'
mode='default'
enabled='TRUE'
logFeature=''
 />
Classic encoding
MatrixComposer {
	center 0 0 0
	rotation 0 0 1 0
	scale 1 1 1
	scaleOrientation 0 0 1 0
	translation 0 0 0
	mode "default"
	enabled TRUE
	logFeature [""]
}

Interface

Filter: X3D only | Avalon only | All
id Name DataType PartType Default ValueType Description
MFString logFeature MFString inputOutput state, child, parent, route, eventIn, eventOut controls the logging of changes, state: log state changes (e.g. live), child: log child add/remove, parent: log parent add/remove, route: log route add/remove; eventIn: log receiving of events, eventOut: log sending of events: guiView, runtime system should create node-view, guiEdit: runtime system should create node-editeverything: log everything
SFBool enabled SFBool inputOutput TRUE Enables or disables the node. A node that is disabled does not react to incoming events and does not send events.
SFMatrix4f matrix_changed SFMatrix4f outputOnly 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 From this outslot you get the matrix composed from the individual transformations received on the inslots.
SFNode metadata SFNode inputOutput MetadataObject container for payload metadata inside MetadataSet element
SFRotation rotation SFRotation inputOutput 0 0 1 0 rotation specifies a rotation in terms of an axis and angel, in radians.
SFRotation scaleOrientation SFRotation inputOutput 0 0 1 0 scaleOrientation specifies the rotation orientation for the scale operation.
SFString mode SFString inputOutput default This exposed field is currently not used.
SFVec3f center SFVec3f inputOutput 0 0 0 center specifies the origin for the scale and rotation operations.
SFVec3f scale SFVec3f inputOutput 1 1 1 scale specifies a scale, which can be nonuniform.
SFVec3f translation SFVec3f inputOutput 0 0 0 translation specifies a translation vector.