Class SoComposeVec3f
- java.lang.Object
-
- com.openinventor.inventor.Inventor
-
- com.openinventor.inventor.misc.SoBase
-
- com.openinventor.inventor.fields.SoFieldContainer
-
- com.openinventor.inventor.engines.SoEngine
-
- com.openinventor.inventor.engines.SoComposeVec3f
-
- All Implemented Interfaces:
SafeDisposable
public class SoComposeVec3f extends SoEngine
Composes 3D vectors from floating-point values. This engine takes three floating-point inputs and composes a 3D vector.The input fields can have multiple values, allowing the engine to compose several vectors in parallel. Some inputs may have more values than others. In such cases, the last value of the shorter inputs will be repeated as necessary.
File format/default:
ComposeVec3f {
x 0 y 0 z 0 - See Also:
SoDecomposeVec3f
,SoEngineOutput
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
-
Field Summary
Fields Modifier and Type Field Description SoEngineOutput
vector
(SoMFVec3f
) Vector composed of x, y, and z.SoMFFloat
x
The x component.SoMFFloat
y
The y component.SoMFFloat
z
The z component.-
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
-
Constructor Summary
Constructors Constructor Description SoComposeVec3f()
Default Constructor.
-
Method Summary
-
Methods inherited from class com.openinventor.inventor.engines.SoEngine
copy, getByName, getOutput, getOutputName
-
Methods inherited from class com.openinventor.inventor.fields.SoFieldContainer
copyFieldValues, copyFieldValues, enableNotify, fieldsAreEqual, get, getAllFields, getEventIn, getEventOut, getField, getFieldName, hasDefaultValues, isNotifyEnabled, set, setToDefaults
-
Methods inherited from class com.openinventor.inventor.misc.SoBase
dispose, getName, isDisposable, isSynchronizable, setName, setSynchronizable, touch
-
Methods inherited from class com.openinventor.inventor.Inventor
getNativeResourceHandle
-
-
-
-
Field Detail
-
x
public final SoMFFloat x
The x component.
-
y
public final SoMFFloat y
The y component.
-
z
public final SoMFFloat z
The z component.
-
vector
public final SoEngineOutput vector
(SoMFVec3f
) Vector composed of x, y, and z.
-
-